feat: option to hide alt indicator closes #1410

This commit is contained in:
Evan Boehs 2023-02-03 12:12:48 -05:00 committed by patak
parent 87496e01af
commit 4a74b16d24
4 changed files with 12 additions and 1 deletions

View file

@ -15,6 +15,12 @@ const userSettings = useUserSettings()
{{ $t('settings.preferences.label') }}
</h1>
</template>
<SettingsToggleItem
:checked="getPreferences(userSettings, 'hideAltIndicatorOnPosts')"
@click="togglePreferences('hideAltIndicatorOnPosts')"
>
{{ $t('settings.preferences.hide_alt_indi_on_posts') }}
</SettingsToggleItem>
<SettingsToggleItem
:checked="getPreferences(userSettings, 'hideBoostCount')"
@click="togglePreferences('hideBoostCount')"