1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-03-25 12:39:26 -05:00

tweak pari plus settings

This commit is contained in:
fly_mc 2024-10-18 22:28:52 +08:00
parent 2ac6caaf3f
commit 7d19128a1b
2 changed files with 4 additions and 7 deletions
packages/frontend/src/pages/settings

View file

@ -132,7 +132,7 @@ const menuDef = computed(() => [{
active: currentPage.value?.route.name === 'plugin',
}, {
icon: 'ti ti-plus',
text: 'Pari Cafe',
text: 'Pari Plus',
to: '/settings/pari',
active: currentPage.value?.route.name === 'pari',
}],

View file

@ -5,11 +5,8 @@ SPDX-License-Identifier: AGPL-3.0-only
<template>
<div class="_gaps_m">
<MkSwitch v-model="autoTranslateButton">
<template #label>{{ i18n.ts.autoTranslateButton }}</template>
</MkSwitch>
</div>
<MkSwitch v-model="autoTranslateButton">{{ i18n.ts.autoTranslateButton }}</MkSwitch>
</div>
</template>
<script lang="ts" setup>
@ -22,7 +19,7 @@ import MkSwitch from '@/components/MkSwitch.vue';
const autoTranslateButton = computed(defaultStore.makeGetterSetter('autoTranslateButton'));
definePageMetadata(() => ({
title: 'Pari Cafe',
title: 'Pari Plus',
icon: 'ti ti-plus',
}));
</script>