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,32 +198,32 @@ 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',
}, {
key: 'chart',
title: i18n.ts.charts,
icon: 'fas fa-chart-simple',
}, {
key: 'users',
title: i18n.ts.users,
icon: 'fas fa-users',
}, {
key: 'raw',
title: 'Raw',
icon: 'fas fa-code',
}]);
theTabs.push(
{
key: 'chart',
title: i18n.ts.charts,
icon: 'fas fa-chart-simple',
}, {
key: 'users',
title: i18n.ts.users,
icon: 'fas fa-users',
}, {
key: 'raw',
title: 'Raw',
icon: 'fas fa-code',
},
);
}
let headerTabs = $computed(() => theTabs);
definePageMetadata({
title: props.host,
icon: 'fas fa-server',