Skip to content

Commit

Permalink
Merge pull request #487 from open-rpc/fix/update-inspector-latest
Browse files Browse the repository at this point in the history
fix: upgrade inspector + logs-react + resize splitpane default
  • Loading branch information
shanejonas authored Oct 16, 2020
2 parents f5332ab + 4218e17 commit 5991afd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@material-ui/lab": "^4.0.0-alpha.47",
"@open-rpc/docs-react": "^1.2.1",
"@open-rpc/examples": "^1.3.3",
"@open-rpc/inspector": "^1.4.15",
"@open-rpc/inspector": "^1.4.18",
"@open-rpc/meta-schema": "^1.13.13",
"@open-rpc/schema-utils-js": "^1.13.0",
"@use-it/interval": "^0.1.3",
Expand Down
2 changes: 1 addition & 1 deletion src/PlaygroundSplitPane.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const PlaygroundSplitPane: React.FC<IProps> = (props) => {
const dir = props.direction || "vertical";
const defaultSize = !props.split
? dir === "horizontal" ? window.innerHeight : window.innerWidth
: dir === "horizontal" ? window.innerHeight / 2 : window.innerWidth / 2;
: dir === "horizontal" ? window.innerHeight * .35 : window.innerWidth / 2;
return (
<SplitPane split={dir}
style={props.style}
Expand Down

0 comments on commit 5991afd

Please sign in to comment.