mirror of
https://github.com/ansible/awx.git
synced 2026-02-27 07:56:06 -03:30
AC-609 Fixed issue with help button not displaying correctly on 'select' pages where user can pick an existing object (i.e. users, credentials, etc) to add to a parent object.
This commit is contained in:
@@ -237,8 +237,7 @@ angular.module('ListGenerator', ['GeneratorHelpers'])
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
html += "</div><!-- list-acitons -->\n";
|
|
||||||
|
|
||||||
//select instructions
|
//select instructions
|
||||||
if (options.mode == 'select' && list.selectInstructions) {
|
if (options.mode == 'select' && list.selectInstructions) {
|
||||||
var btn = {
|
var btn = {
|
||||||
@@ -246,15 +245,16 @@ angular.module('ListGenerator', ['GeneratorHelpers'])
|
|||||||
dataPlacement: 'left',
|
dataPlacement: 'left',
|
||||||
dataContainer: 'body',
|
dataContainer: 'body',
|
||||||
icon: "icon-question-sign",
|
icon: "icon-question-sign",
|
||||||
'class': 'btn-sm btn-help btn-info',
|
'class': 'btn-xs btn-help btn-info',
|
||||||
awToolTip: 'Click for help',
|
awToolTip: 'Click for help',
|
||||||
dataTitle: 'Help',
|
dataTitle: 'Help',
|
||||||
iconSize: 'large'
|
iconSize: 'large'
|
||||||
};
|
};
|
||||||
html += this.button(btn, 'select');
|
html += this.button(btn, 'select');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
html += "</div><!-- list-acitons -->\n";
|
||||||
html += "</div><!-- col-lg-7 -->\n";
|
html += "</div><!-- col-lg-7 -->\n";
|
||||||
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
html += "<div class=\"col-lg-7\"></div>\n";
|
html += "<div class=\"col-lg-7\"></div>\n";
|
||||||
|
|||||||
Reference in New Issue
Block a user