@dosgato/dialog 1.1.16 → 1.1.17
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/FieldRadio.svelte +1 -1
- package/package.json +1 -1
package/dist/FieldRadio.svelte
CHANGED
|
@@ -35,7 +35,7 @@ async function reactToChoices(..._) {
|
|
|
35
35
|
if (!choices.length) {
|
|
36
36
|
return await store.setField(finalPath, finalDeserialize(''));
|
|
37
37
|
}
|
|
38
|
-
const val = get($store, finalPath);
|
|
38
|
+
const val = get($store.data, finalPath);
|
|
39
39
|
if (!choices.some(o => o.value === finalDeserialize(val)))
|
|
40
40
|
await store.setField(finalPath, notNull ? defaultValue : finalDeserialize(''));
|
|
41
41
|
}
|
package/package.json
CHANGED