diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-17 22:19:55 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-17 22:19:55 -0700 |
commit | c6a3d8add014ddfe08c62b3ccb1b01dbc47495f5 (patch) | |
tree | 0bb5bb11cf185a575df520908078d310775f4a7c /extension/react-app/src/pages | |
parent | 98047dc32a5bfa525eff7089b2ac020ce761f9a9 (diff) | |
download | sncontinue-c6a3d8add014ddfe08c62b3ccb1b01dbc47495f5.tar.gz sncontinue-c6a3d8add014ddfe08c62b3ccb1b01dbc47495f5.tar.bz2 sncontinue-c6a3d8add014ddfe08c62b3ccb1b01dbc47495f5.zip |
feat: :sparkles: edit previous inputs
Diffstat (limited to 'extension/react-app/src/pages')
-rw-r--r-- | extension/react-app/src/pages/gui.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/extension/react-app/src/pages/gui.tsx b/extension/react-app/src/pages/gui.tsx index 4c89bbaa..a4a3d379 100644 --- a/extension/react-app/src/pages/gui.tsx +++ b/extension/react-app/src/pages/gui.tsx @@ -412,6 +412,7 @@ function GUI(props: GUIProps) { return node.step.name === "User Input" ? ( node.step.hide || ( <UserInputContainer + index={index} onDelete={() => { client?.deleteAtIndex(index); }} |