lutra 0.0.7 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/form/Form.svelte +1 -1
- package/dist/form/form.js +1 -1
- package/package.json +1 -1
package/dist/form/Form.svelte
CHANGED
@@ -61,7 +61,7 @@ onMount(() => {
|
|
61
61
|
// `result` is an `ActionResult` object
|
62
62
|
// `update` is a function which triggers the default logic that would be triggered if this callback wasn't set
|
63
63
|
console.log('result', result);
|
64
|
-
const resultForm =
|
64
|
+
const resultForm = result?.data?.form;
|
65
65
|
if(result.type === "success") {
|
66
66
|
if(resultForm) {
|
67
67
|
form.valid = resultForm.valid;
|
package/dist/form/form.js
CHANGED