replaced ti-settings

This commit is contained in:
dakkar 2024-06-21 14:42:59 +01:00
parent e7b3a60698
commit 65605683c7
25 changed files with 27 additions and 26 deletions

View file

@ -50,7 +50,7 @@ const router = useRouter();
const indexInfo = {
title: i18n.ts.controlPanel,
icon: 'ph-gear ph-bold ph-lg',
icon: 'ti ti-settings',
hideHeader: true,
};
@ -180,7 +180,7 @@ const menuDef = computed(() => [{
}, {
title: i18n.ts.settings,
items: [{
icon: 'ph-gear ph-bold ph-lg',
icon: 'ti ti-settings',
text: i18n.ts.general,
to: '/admin/settings',
active: currentPage.value?.route.name === 'settings',

View file

@ -325,7 +325,7 @@ const headerTabs = computed(() => []);
definePageMetadata(() => ({
title: i18n.ts.general,
icon: 'ph-gear ph-bold ph-lg',
icon: 'ti ti-settings',
}));
</script>

View file

@ -84,7 +84,7 @@ const headerActions = computed(() => antenna.value ? [{
text: i18n.ts.jumpToSpecifiedDate,
handler: timetravel,
}, {
icon: 'ph-gear ph-bold ph-lg',
icon: 'ti ti-settings',
text: i18n.ts.settings,
handler: settings,
}] : []);

View file

@ -262,7 +262,7 @@ const headerActions = computed(() => {
if (($i && $i.id === channel.value.userId) || iAmModerator) {
headerItems.push({
icon: 'ph-gear ph-bold ph-lg',
icon: 'ti ti-settings',
text: i18n.ts.edit,
handler: edit,
});

View file

@ -149,7 +149,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</div>
<div class="_woodenFrame" style="margin-left: auto;">
<div class="_woodenFrameInner" style="text-align: center;">
<div @click="showConfig = !showConfig"><i class="ph-gear ph-bold ph-lg"></i></div>
<div @click="showConfig = !showConfig"><i class="ti ti-settings"></i></div>
</div>
</div>
</div>

View file

@ -276,7 +276,7 @@ const headerActions = computed(() => []);
const headerTabs = computed(() => [{
key: 'settings',
title: i18n.ts._pages.pageSetting,
icon: 'ph-gear ph-bold ph-lg',
icon: 'ti ti-settings',
}, {
key: 'contents',
title: i18n.ts._pages.contents,

View file

@ -40,7 +40,7 @@ import { useRouter } from '@/router/supplier.js';
const indexInfo = {
title: i18n.ts.settings,
icon: 'ph-gear ph-bold ph-lg',
icon: 'ti ti-settings',
hideHeader: true,
};
const INFO = ref(indexInfo);

View file

@ -37,7 +37,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</div>
<div class="_buttons">
<MkButton v-if="plugin.config" inline @click="config(plugin)"><i class="ph-gear ph-bold ph-lg"></i> {{ i18n.ts.settings }}</MkButton>
<MkButton v-if="plugin.config" inline @click="config(plugin)"><i class="ti ti-settings"></i> {{ i18n.ts.settings }}</MkButton>
<MkButton inline danger @click="uninstall(plugin)"><i class="ph-trash ph-bold ph-lg"></i> {{ i18n.ts.uninstall }}</MkButton>
</div>

View file

@ -98,7 +98,7 @@ const headerActions = computed(() => list.value ? [{
}], ev.currentTarget ?? ev.target);
},
}, {
icon: 'ph-gear ph-bold ph-lg',
icon: 'ti ti-settings',
text: i18n.ts.settings,
handler: settings,
}] : []);