1
0
Fork 0
mirror of synced 2024-07-01 12:30:41 +12:00

Reset forms when disable prop changes

This commit is contained in:
Andrew Kingston 2022-08-23 14:59:07 +01:00
parent c99b5398b2
commit b621cb5b9d

View file

@ -66,7 +66,7 @@
$: initialValues = getInitialValues(actionType, dataSource, $context)
$: resetKey = Helpers.hashString(
JSON.stringify(initialValues) + JSON.stringify(schema)
JSON.stringify(initialValues) + JSON.stringify(schema) + disabled
)
</script>