Skip to content

Commit

Permalink
[dagit] Render status page navigation when factory floor loading (#7079)
Browse files Browse the repository at this point in the history
  • Loading branch information
benpankow committed Mar 16, 2022
1 parent 9941cbc commit f6baac7
Showing 1 changed file with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -273,9 +273,15 @@ export const InstanceOverviewPage = () => {

if (!data && loading) {
return (
<Box padding={64}>
<Spinner purpose="page" />
</Box>
<>
<PageHeader
title={<Heading>Instance status</Heading>}
tabs={<InstanceTabs tab="overview" refreshState={refreshState} />}
/>
<Box padding={64}>
<Spinner purpose="section" />
</Box>
</>
);
}

Expand Down

0 comments on commit f6baac7

Please sign in to comment.