@@ -6,6 +6,7 @@ import CloseIcon from "@material-ui/icons/Close";
66import FlashOn from "@material-ui/icons/FlashOn" ;
77import FlashOff from "@material-ui/icons/FlashOff" ;
88import History from "@material-ui/icons/History" ;
9+ import Keyboard from "@material-ui/icons/Keyboard" ;
910import MonacoEditor from "@etclabscore/react-monaco-editor" ;
1011import PlusIcon from "@material-ui/icons/Add" ;
1112import DocumentIcon from "@material-ui/icons/Description" ;
@@ -552,11 +553,11 @@ const Inspector: React.FC<IProps> = (props) => {
552553 }
553554 { logs . length === 0 &&
554555 < Container maxWidth = "sm" >
555- < Grid container justify = "center" style = { { paddingTop : "20px " } } >
556- < Typography variant = "caption" gutterBottom > Press the Play button to see the results here.</ Typography >
557- < Typography variant = "caption" >
556+ < Grid container justify = "center" style = { { paddingTop : "40px " } } >
557+ < Typography gutterBottom > Press the Play button to see the results here.</ Typography >
558+ < Typography >
558559 Use
559- < Button variant = "contained" disabled size = "small" style = { { marginRight : "3px" } } >
560+ < Button startIcon = { < Keyboard /> } variant = "contained" disabled size = "small" style = { { marginRight : "3px" } } >
560561 CTRL + SPACE
561562 </ Button >
562563 to auto-complete in the editor.
@@ -566,7 +567,7 @@ const Inspector: React.FC<IProps> = (props) => {
566567 }
567568 { logs . length !== 0 &&
568569 < div style = { { height : "100%" } } >
569- < JSONRPCLogger logs = { logs } sidebarAlign = { "right" } openRecentPayload = { true } />
570+ < JSONRPCLogger openrpcDocument = { openrpcDocument } logs = { logs } sidebarAlign = { "right" } openRecentPayload = { true } />
570571 </ div >
571572 }
572573 </ >
0 commit comments