1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-08 07:10:54 +00:00
* Added: Setting to filter out chat messages by type. Can be used to remove hosting and raid notices, among other things.
* Added: Support for clicking badges. It's a native feature that's been missing for ages.
* Changed: Make headers slightly bigger in settings so that they stand out more.
* Fixed: Certain settings inheriting default values when they should not.
* Fixed: Bug in the FFZ Emote Menu when garbage subscription data is returned from Twitch.
* Fixed: Do not suppress error messages in the console when an error happens in an event handler.
This commit is contained in:
SirStendec 2020-08-17 13:33:30 -04:00
parent fd2977f899
commit 129f350a80
12 changed files with 626 additions and 200 deletions

View file

@ -1,11 +1,11 @@
<template lang="html">
<div v-if="item.contents" :class="classes">
<header v-if="! item.no_header">
<header v-if="! item.no_header" class="tw-font-size-5">
{{ t(item.i18n_key, item.title) }}
</header>
<section
v-if="item.description"
class="tw-pd-b-1"
class="tw-pd-b-1 tw-c-text-alt"
>
<markdown :source="t(item.desc_i18n_key, item.description)" />
</section>