mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-01 18:20:06 +00:00
Fix a bug with task fields (#1367)
This commit is contained in:
parent
677d85283e
commit
33b8bc60ca
1 changed files with 4 additions and 4 deletions
|
@ -126,8 +126,8 @@ function TaskNode({ id, data }: NodeProps<TaskNode>) {
|
|||
onIconClick={() => {
|
||||
setParametersPanelField("url");
|
||||
}}
|
||||
onChange={(value) => {
|
||||
handleChange("url", value);
|
||||
onChange={(event) => {
|
||||
handleChange("url", event.target.value);
|
||||
}}
|
||||
value={inputs.url}
|
||||
placeholder={placeholders["task"]["url"]}
|
||||
|
@ -145,8 +145,8 @@ function TaskNode({ id, data }: NodeProps<TaskNode>) {
|
|||
onIconClick={() => {
|
||||
setParametersPanelField("navigationGoal");
|
||||
}}
|
||||
onChange={(value) => {
|
||||
handleChange("navigationGoal", value);
|
||||
onChange={(event) => {
|
||||
handleChange("navigationGoal", event.target.value);
|
||||
}}
|
||||
value={inputs.navigationGoal}
|
||||
placeholder={placeholders["task"]["navigationGoal"]}
|
||||
|
|
Loading…
Add table
Reference in a new issue