fix a bug with file upload node (#2019)

This commit is contained in:
Shuchang Zheng
2025-03-25 06:24:46 -07:00
committed by GitHub
parent 1532709224
commit a1d94a152b

View File

@@ -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>