Skip to content

Commit

Permalink
fix: Missing system status tabs (#17459)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjackwhite authored Sep 15, 2023
1 parent 3908adb commit f438e59
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/scenes/instance/SystemStatus/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export function SystemStatus(): JSX.Element {
const { user } = useValues(userLogic)
const { featureFlags } = useValues(featureFlagLogic)

const tabs = [
let tabs = [
{
key: 'overview',
label: 'System overview',
Expand All @@ -39,7 +39,7 @@ export function SystemStatus(): JSX.Element {
] as LemonTab<InstanceStatusTabName>[]

if (user?.is_staff) {
tabs.concat([
tabs = tabs.concat([
{
key: 'metrics',
label: 'Internal metrics',
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f438e59

Please sign in to comment.