feat(views/table): add column to open note

This commit is contained in:
Elian Doran
2025-06-28 17:23:42 +03:00
parent 4a26f30d65
commit 56d366a286
2 changed files with 17 additions and 4 deletions

View File

@@ -81,7 +81,7 @@ export default class TableView extends ViewMode<StateInfo> {
const viewStorage = await this.viewStorage.restore();
const initialState = viewStorage?.gridState;
const modules = [SortModule, FormatModule];
const modules = [SortModule, FormatModule, InteractionModule];
for (const module of modules) {
Tabulator.registerModule(module);
}