Skip to content

Commit 5991afd

Browse files
authored
Merge pull request #487 from open-rpc/fix/update-inspector-latest
fix: upgrade inspector + logs-react + resize splitpane default
2 parents f5332ab + 4218e17 commit 5991afd

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

package-lock.json

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"@material-ui/lab": "^4.0.0-alpha.47",
2020
"@open-rpc/docs-react": "^1.2.1",
2121
"@open-rpc/examples": "^1.3.3",
22-
"@open-rpc/inspector": "^1.4.15",
22+
"@open-rpc/inspector": "^1.4.18",
2323
"@open-rpc/meta-schema": "^1.13.13",
2424
"@open-rpc/schema-utils-js": "^1.13.0",
2525
"@use-it/interval": "^0.1.3",

src/PlaygroundSplitPane.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const PlaygroundSplitPane: React.FC<IProps> = (props) => {
3333
const dir = props.direction || "vertical";
3434
const defaultSize = !props.split
3535
? dir === "horizontal" ? window.innerHeight : window.innerWidth
36-
: dir === "horizontal" ? window.innerHeight / 2 : window.innerWidth / 2;
36+
: dir === "horizontal" ? window.innerHeight * .35 : window.innerWidth / 2;
3737
return (
3838
<SplitPane split={dir}
3939
style={props.style}

0 commit comments

Comments
 (0)