We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56b1e27 commit 6051fffCopy full SHA for 6051fff
1 file changed
plugins/ui/src/js/src/DashboardPlugin.tsx
@@ -34,6 +34,7 @@ import DashboardWidgetHandler from './widget/DashboardWidgetHandler';
34
35
const NAME_ELEMENT = 'deephaven.ui.Element';
36
const DASHBOARD_ELEMENT = 'deephaven.ui.Dashboard';
37
+const TABLE_TYPE = 'Table';
38
const PLUGIN_NAME = '@deephaven/js-plugin-ui.DashboardPlugin';
39
40
const log = Log.module('@deephaven/js-plugin-ui.DashboardPlugin');
@@ -144,6 +145,9 @@ export function DashboardPlugin(
144
145
handleDashboardOpen({ widget, dashboardId: widgetId });
146
break;
147
}
148
+ case TABLE_TYPE: {
149
+ break;
150
+ }
151
default: {
152
log.error('Unknown widget type', type);
153
0 commit comments