Skip to content

Commit

Permalink
[grid-ui] Don't hide the drawer if the grid is disconnected (V2)
Browse files Browse the repository at this point in the history
This reverts commit 2eea3d8.
And implements what we want with a different approach.
  • Loading branch information
diemol committed Feb 17, 2021
1 parent 2eea3d8 commit a4f5c22
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion javascript/grid-ui/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,13 @@ export const client = new ApolloClient({
});

function Copyright() {
// noinspection HtmlUnknownAnchorTarget
return (
<Typography variant="body2" color="textSecondary" align="center">
{'All rights reserved - '}
<Link href="#help">
Help
</Link>
{' - All rights reserved - '}
<Link href="https://sfconservancy.org/" target={"_blank"}>
Software Freedom Conservancy
</Link>{' '}
Expand Down
2 changes: 1 addition & 1 deletion javascript/grid-ui/src/components/NavBar/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export default function NavBar(props) {
</div>
</List>
<Box flexGrow={1}/>
{showOverallConcurrency && (
{showOverallConcurrency && open && (
<Box
p={2}
m={2}
Expand Down

0 comments on commit a4f5c22

Please sign in to comment.