diff --git a/awx/ui/client/src/shared/list-generator/list-generator.factory.js b/awx/ui/client/src/shared/list-generator/list-generator.factory.js
index 3e425a0828..89ae2aac39 100644
--- a/awx/ui/client/src/shared/list-generator/list-generator.factory.js
+++ b/awx/ui/client/src/shared/list-generator/list-generator.factory.js
@@ -171,25 +171,24 @@ export default ['$location', '$compile', '$rootScope', 'Attr', 'Icon',
if (options.mode !== 'lookup' && (list.well === undefined || list.well)) {
html += `
`;
- }
+ // List actions
+ html += "
";
+ html += "
";
+ html += `
`;
- // List actions
- html += "
";
- html += "
";
- html += `
`;
+ for (action in list.actions) {
+ list.actions[action] = _.defaults(list.actions[action], { dataPlacement: "top" });
+ }
- for (action in list.actions) {
- list.actions[action] = _.defaults(list.actions[action], { dataPlacement: "top" });
+ html += "
";
+ if (list.toolbarAuxAction) {
+ html += `
${list.toolbarAuxAction}
`;
+ }
+ html += "\n
";
+ html += "
";
+ // End list actions
}
- html += "
";
- if (list.toolbarAuxAction) {
- html += `
${list.toolbarAuxAction}
`;
- }
- html += "\n
";
- html += "
";
- // End list actions
-
html += (list.searchRowActions) ? "
" : "";
if (list.searchRowActions && !list.searchSize) {
list.searchSize = 'col-lg-7 col-md-12 col-sm-12 col-xs-12';
diff --git a/awx/ui/client/src/shared/paginate/paginate.partial.html b/awx/ui/client/src/shared/paginate/paginate.partial.html
index 8001e72da4..7f8dc186c9 100644
--- a/awx/ui/client/src/shared/paginate/paginate.partial.html
+++ b/awx/ui/client/src/shared/paginate/paginate.partial.html
@@ -1,5 +1,5 @@