1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-28 15:27:43 +00:00
* Added: Support for different settings providers, including IndexedDB.
* Fixed: Alignment of descriptions with check box settings.
* Fixed: Settings being added multiple times to the Control Center UI when registered multiple times.
* API Added: Providers now support blobs, and emit events when blobs change.
* Maintenance: Update dependencies. Add a babel plugin.
This commit is contained in:
SirStendec 2021-02-09 19:14:56 -05:00
parent b337b6abe3
commit 5412a928a1
12 changed files with 976 additions and 96 deletions

View file

@ -50,13 +50,13 @@
<section
v-if="item.description"
class="tw-c-text-alt-2"
style="padding-left:2.2rem"
style="padding-left:2.5rem"
>
<markdown :source="t(item.desc_i18n_key || `${item.i18n_key}.description`, item.description)" />
</section>
<section
v-if="item.extra"
style="padding-left:2.2rem"
style="padding-left:2.5rem"
>
<component :is="item.extra.component" :context="context" :item="item" />
</section>