mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-11-25 15:46:06 +09:00
fix
This commit is contained in:
parent
525f81f218
commit
1d900894c8
@ -198,18 +198,15 @@ const headerActions = $computed(() => [{
|
|||||||
},
|
},
|
||||||
}]);
|
}]);
|
||||||
|
|
||||||
let headerTabs = $computed(() => [{
|
let theTabs = [{
|
||||||
key: 'overview',
|
key: 'overview',
|
||||||
title: i18n.ts.overview,
|
title: i18n.ts.overview,
|
||||||
icon: 'fas fa-info-circle',
|
icon: 'fas fa-info-circle',
|
||||||
}]);
|
}];
|
||||||
|
|
||||||
if (iAmModerator) {
|
if (iAmModerator) {
|
||||||
headerTabs.values.apply([{
|
theTabs.push(
|
||||||
key: 'overview',
|
{
|
||||||
title: i18n.ts.overview,
|
|
||||||
icon: 'fas fa-info-circle',
|
|
||||||
}, {
|
|
||||||
key: 'chart',
|
key: 'chart',
|
||||||
title: i18n.ts.charts,
|
title: i18n.ts.charts,
|
||||||
icon: 'fas fa-chart-simple',
|
icon: 'fas fa-chart-simple',
|
||||||
@ -221,9 +218,12 @@ if (iAmModerator) {
|
|||||||
key: 'raw',
|
key: 'raw',
|
||||||
title: 'Raw',
|
title: 'Raw',
|
||||||
icon: 'fas fa-code',
|
icon: 'fas fa-code',
|
||||||
}]);
|
},
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let headerTabs = $computed(() => theTabs);
|
||||||
|
|
||||||
definePageMetadata({
|
definePageMetadata({
|
||||||
title: props.host,
|
title: props.host,
|
||||||
icon: 'fas fa-server',
|
icon: 'fas fa-server',
|
||||||
|
Loading…
Reference in New Issue
Block a user