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" type="password"
value={inputs.awsSecretAccessKey} value={inputs.awsSecretAccessKey}
className="nopan text-xs" className="nopan text-xs"
onChange={(value) => { onChange={(event) => {
handleChange("awsSecretAccessKey", value); handleChange("awsSecretAccessKey", event.target.value);
}} }}
/> />
</div> </div>