Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
shanejonas committed Oct 15, 2020
1 parent 753a78d commit 8373306
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions src/containers/Inspector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -555,9 +555,15 @@ const Inspector: React.FC<IProps> = (props) => {
<Container maxWidth="sm">
<Grid container justify="center" style={{ paddingTop: "40px" }}>
<Typography gutterBottom>Press the Play button to see the results here.</Typography>
<Typography >
<Typography>
Use&nbsp;
<Button startIcon={<Keyboard />} variant="contained" disabled size="small" style={{ marginRight: "3px" }}>
<Button
startIcon={<Keyboard />}
variant="contained"
disabled
size="small"
style={{ marginRight: "3px" }}
>
CTRL + SPACE
</Button>
to auto-complete in the editor.
Expand All @@ -567,7 +573,11 @@ const Inspector: React.FC<IProps> = (props) => {
}
{logs.length !== 0 &&
<div style={{ height: "100%" }}>
<JSONRPCLogger openrpcDocument={openrpcDocument} logs={logs} sidebarAlign={"right"} openRecentPayload={true} />
<JSONRPCLogger
openrpcDocument={openrpcDocument}
logs={logs}
sidebarAlign={"right"}
openRecentPayload={true} />
</div>
}
</>
Expand Down

0 comments on commit 8373306

Please sign in to comment.