TableView: fill in append_table

oops
This commit is contained in:
Starbeamrainbowlabs 2022-03-10 03:04:50 +00:00
parent 2f7374a04b
commit 0f2c5ae194
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 5 additions and 1 deletions

View File

@ -55,7 +55,11 @@ class TableView {
}
append_table(peer, table) {
for(let [ def_name, item_manager ] of this.el_parts) {
if(item_manager === null) continue;
item_manager.append(peer, table);
}
}
}