fix a bug with file upload node (#2019)
This commit is contained in:
@@ -123,8 +123,8 @@ function FileUploadNode({ id, data }: NodeProps<FileUploadNode>) {
|
||||
type="password"
|
||||
value={inputs.awsSecretAccessKey}
|
||||
className="nopan text-xs"
|
||||
onChange={(value) => {
|
||||
handleChange("awsSecretAccessKey", value);
|
||||
onChange={(event) => {
|
||||
handleChange("awsSecretAccessKey", event.target.value);
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user