diff --git a/client/galaxy/scripts/apps/extended.js b/client/galaxy/scripts/apps/extended.js
index 2d859db4ee8..6e72aa6802d 100644
--- a/client/galaxy/scripts/apps/extended.js
+++ b/client/galaxy/scripts/apps/extended.js
@@ -1,4 +1,5 @@
import _l from "utils/localization";
+import GalaxyApp from "galaxy";
import WorkflowView from "mvc/workflow/workflow-view";
import Trackster from "viz/trackster";
import Circster from "viz/circster";
@@ -184,7 +185,8 @@ export const bundleEntries = {
Trackster,
StructureView,
HDAListItemEdit,
- HDAModel
+ HDAModel,
+ GalaxyApp
};
window.bundleEntries = bundleEntries;
diff --git a/templates/galaxy_client_app.mako b/templates/galaxy_client_app.mako
index 92ca6f249c3..2ed9d47ddac 100644
--- a/templates/galaxy_client_app.mako
+++ b/templates/galaxy_client_app.mako
@@ -24,19 +24,16 @@ ${ h.dumps( dictionary, indent=( 2 if trans.debug else 0 ) ) }
## 1) bootstrap kwargs (as above), 2) build Galaxy global var, 3) load 'app' by AMD (optional)
${ self.bootstrap( **kwargs ) }
%def>
diff --git a/templates/webapps/galaxy/history/view_multiple.mako b/templates/webapps/galaxy/history/view_multiple.mako
index 7c268b4a027..ce6ca7960ee 100644
--- a/templates/webapps/galaxy/history/view_multiple.mako
+++ b/templates/webapps/galaxy/history/view_multiple.mako
@@ -1,4 +1,3 @@
-
<%inherit file="/webapps/galaxy/base_panels.mako"/>
<%namespace file="/galaxy_client_app.mako" name="galaxy_client"/>
@@ -24,12 +23,16 @@
<%def name="javascript_app()">
-${ galaxy_client.load( app='app', current_history_id=current_history_id,
- includingDeleted=include_deleted_histories, order=order, limit=limit ) }
-##${ galaxy_client.load( app='app', histories=histories,
-## includingDeleted=include_deleted_histories, order=order, limit=limit ) }
+
+${galaxy_client.load(
+ app='app',
+ current_history_id=current_history_id,
+ includingDeleted=include_deleted_histories,
+ order=order,
+ limit=limit
+)}
%def>