add comment

This commit is contained in:
Starbeamrainbowlabs 2022-03-11 01:50:44 +00:00
parent 33e247f1c1
commit 71f8497bee
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,8 @@
"use strict";
export default async function(params) {
console.log(`TABLE ${params.table_name}`);
// TODO: Display UI elements until switch is complete? Or maybe add a cancellation token / AbortSignal to TableView.switch_table()?
console.log(`TABLE SWITCH START: ${params.table_name}`);
await globalThis.sysui.tableview.switch_table(params.table_name);
console.log(`TABLE SWITCH COMPLETE: ${params.table_name}`);
}