Skip to content

Commit 97af8b7

Browse files
committed
Remove unused bundleEntries exports, verified via grep on the templates directory
1 parent a9da583 commit 97af8b7

1 file changed

Lines changed: 4 additions & 9 deletions

File tree

client/src/bundleEntries.js

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,18 @@
66
* to exist until such time as we replace the overall application with a Vue component which
77
* will handle initializations for components individually.
88
*
9-
* legacy/grid_base.mako: window.bundleEntries.LegacyGridView
10-
* webapps/galaxy/dataset/tabular_chunked.mako: window.bundleEntries.createTabularDatasetChunkedView
11-
* webapps/galaxy/dataset/display.mako: window.bundleEntries.createTabularDatasetChunkedView
12-
* webapps/reports/run_stats.mako: window.bundleEntries.create_chart
13-
* webapps/reports/run_stats.mako: window.bundleEntries.create_histogram
149
*/
1510
import { replaceChildrenWithComponent } from "utils/mountVueComponent";
1611

1712
import TabularChunkedView from "components/Visualizations/Tabular/TabularChunkedView.vue";
1813

19-
export { getGalaxyInstance, setGalaxyInstance } from "app";
14+
// legacy/grid_base.mako
2015
export { default as LegacyGridView } from "legacy/grid/grid-view";
16+
17+
// webapps/reports/run_stats.mako
2118
export { create_chart, create_histogram } from "reports/run_stats";
2219

20+
// webapps/galaxy/dataset/{ display | tabular_chunked }.mako
2321
export const createTabularDatasetChunkedView = (options) => {
2422
return replaceChildrenWithComponent(options.parent_elt, TabularChunkedView, { options });
2523
};
26-
27-
// Used in common.mako
28-
export { default as store } from "storemodern";

0 commit comments

Comments
 (0)