Browse Source

fix: typo in tabbar preferences (#4027)

pull/4032/head
Li Kui 2 years ago
committed by GitHub
parent
commit
0619faf61e
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      packages/effects/layouts/src/widgets/preferences/blocks/layout/tabbar.vue

4
packages/effects/layouts/src/widgets/preferences/blocks/layout/tabbar.vue

@ -59,10 +59,10 @@ const styleItems = computed((): SelectOption[] => [
<SwitchItem v-model="tabbarShowIcon" :disabled="!tabbarEnable">
{{ $t('preferences.tabbar.icon') }}
</SwitchItem>
<SwitchItem v-model="tabbarShowRefresh" :disabled="!tabbarEnable">
<SwitchItem v-model="tabbarShowMore" :disabled="!tabbarEnable">
{{ $t('preferences.tabbar.showMore') }}
</SwitchItem>
<SwitchItem v-model="tabbarShowMore" :disabled="!tabbarEnable">
<SwitchItem v-model="tabbarShowRefresh" :disabled="!tabbarEnable">
{{ $t('preferences.tabbar.showRefresh') }}
</SwitchItem>
<SwitchItem v-model="tabbarShowMaximize" :disabled="!tabbarEnable">

Loading…
Cancel
Save