Skip to content
Snippets Groups Projects
Commit b4a985d8 authored by Tom Robinson's avatar Tom Robinson
Browse files

Table minSize. Fall back to Table if visualization is missing.

parent 3d76d7f7
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,8 @@ export default class Bar extends Component {
static identifier = "table";
static iconName = "table";
static minSize = { width: 4, height: 4 };
static isSensible(cols, rows) {
return true;
}
......
......@@ -32,4 +32,9 @@ registerVisualization(USStateMap);
registerVisualization(WorldMap);
registerVisualization(PinMap);
export default visualizations;
export default {
get(name) {
// default to table if the visualization is missing so we don't blow up
return visualizations.get(name) || Table;
}
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment