This commit is contained in:
ThatOneCalculator 2022-07-25 17:27:57 -07:00
parent a9d62349c1
commit 96a219a294
1 changed files with 19 additions and 19 deletions

View File

@ -198,18 +198,15 @@ const headerActions = $computed(() => [{
},
}]);
let headerTabs = $computed(() => [{
let theTabs = [{
key: 'overview',
title: i18n.ts.overview,
icon: 'fas fa-info-circle',
}]);
}];
if (iAmModerator) {
headerTabs.values.apply([{
key: 'overview',
title: i18n.ts.overview,
icon: 'fas fa-info-circle',
}, {
theTabs.push(
{
key: 'chart',
title: i18n.ts.charts,
icon: 'fas fa-chart-simple',
@ -221,9 +218,12 @@ if (iAmModerator) {
key: 'raw',
title: 'Raw',
icon: 'fas fa-code',
}]);
},
);
}
let headerTabs = $computed(() => theTabs);
definePageMetadata({
title: props.host,
icon: 'fas fa-server',