1
0
Fork 0
mirror of synced 2024-09-18 18:28:33 +12:00

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

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>