Reset forms when disable prop changes

This commit is contained in:
Andrew Kingston 2022-08-23 14:59:07 +01:00
parent 0a2ad8f879
commit bcda3e321e
1 changed files with 1 additions and 1 deletions

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>