Skip to content

Commit 088e375

Browse files
committed
fix append for empty data set
1 parent a6ea704 commit 088e375

File tree

1 file changed

+1
-1
lines changed
  • frameworks/keyed/react-starbeam/src

1 file changed

+1
-1
lines changed

frameworks/keyed/react-starbeam/src/data.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export class TableData {
3535
* Reactive version of a native Array.
3636
* (could be handled via decorator)
3737
*/
38-
#data = Cell([])
38+
#data = Cell(reactive.array())
3939
get data() {
4040
return this.#data.current;
4141
}

0 commit comments

Comments
 (0)