File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ button {
1313 color : grey;
1414 cursor : pointer;
1515 border : 0 ;
16- flex : 1 ;
1716 border-radius : 10px ;
1817 padding : 8px ;
1918}
@@ -91,11 +90,11 @@ input {
9190}
9291
9392.react-flow__edge .selected .react-flow__edge-path {
94- stroke : red!important ;
93+ stroke : red !important ;
9594}
9695
9796.react-flow__node .selected {
98- outline : 2px solid red!important ;
97+ outline : 2px solid red !important ;
9998}
10099
101100.react-flow__edge .previous-method-call .react-flow__edge-path {
@@ -150,6 +149,7 @@ input {
150149.react-flow__node-object .react-flow__handle-left {
151150 transform : translate (-8px , 0 );
152151}
152+
153153.react-flow__node-method-call .react-flow__handle-right ,
154154.react-flow__node-object .react-flow__handle-right {
155155 transform : translate (8px , 0 );
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import '@xyflow/react/dist/style.css';
33import useStore , { RFState } from './store' ;
44import { shallow } from 'zustand/shallow' ;
55import { MemoryView } from "./MemoryView" ;
6- import { EditView } from "./EditView " ;
6+ import { ConfigView } from "./ConfigView " ;
77
88const selector = ( state : RFState ) => ( {
99 route : state . route
@@ -16,10 +16,10 @@ function App() {
1616 ) ;
1717
1818 return (
19- < div style = { { width : "100dvw" , height : "100dvh" } } >
19+ < div style = { { height : "100dvh" } } >
2020 { route === "view" &&
21- < MemoryView /> }
22- { route === "edit " && < EditView /> }
21+ < MemoryView /> }
22+ { route === "config " && < ConfigView /> }
2323 </ div >
2424 ) ;
2525}
You can’t perform that action at this time.
0 commit comments