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 12cc73a commit d72a253Copy full SHA for d72a253
frameworks/keyed/butterfloat/row-vm.ts
@@ -51,7 +51,7 @@ export class RowViewModel {
51
}
52
53
updateLabel() {
54
- this.#setLabel((current) => current + '!!!')
+ this.#setLabel((current) => current + ' !!!')
55
56
57
remove() {
frameworks/keyed/butterfloat/row.tsx
@@ -27,7 +27,7 @@ export function Row(
27
vm.updateLabel(),
28
)
29
30
- const id = concat(of(vm.id.toString()), NEVER)
+ const id = concat(of((vm.id+1).toString()), NEVER)
31
32
return (
33
<tr
0 commit comments