We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 482ea13 commit 68679b5Copy full SHA for 68679b5
.changeset/twelve-carrots-bathe.md
@@ -0,0 +1,5 @@
1
+---
2
+"@skeletonlabs/skeleton": patch
3
4
+
5
+chore: Rollback Input Chip change that introduced reactivity bug
packages/skeleton/src/lib/components/InputChip/InputChip.svelte
@@ -223,6 +223,11 @@
223
$: classesInterface = `${cInterface}`;
224
$: classesChipList = `${cChipList}`;
225
$: classesInputField = `${cInputField}`;
226
+ $: chipValues =
227
+ value?.map((val, i) => {
228
+ if (chipValues[i]?.val === val) return chipValues[i];
229
+ return { id: Math.random(), val: val };
230
+ }) || [];
231
</script>
232
233
<div class="input-chip {classesBase}" class:opacity-50={$$restProps.disabled}>
0 commit comments