mirror of
https://github.com/ansible/awx.git
synced 2026-05-19 14:57:39 -02:30
Job Event detail is now displayed in a modal dialog. Inside all modal dialogs displaying a form, reduced amount of space given to field labels and expanded amount of space given to text area fields.
This commit is contained in:
@@ -22,18 +22,19 @@ angular.module('JobEventsListDefinition', [])
|
||||
label: 'Creation Date',
|
||||
key: true,
|
||||
nosort: true,
|
||||
notSearchable: true
|
||||
notSearchable: true,
|
||||
ngClick: "viewJobEvent(\{\{ jobevent.id \}\})",
|
||||
},
|
||||
event_display: {
|
||||
label: 'Event',
|
||||
hasChildren: true,
|
||||
link: true,
|
||||
ngClick: "viewJobEvent(\{\{ jobevent.id \}\})",
|
||||
nosort: true,
|
||||
notSearchable: true
|
||||
},
|
||||
host: {
|
||||
label: 'Host',
|
||||
ngClick: "viewHost(\{\{ jobevent.host \}\})",
|
||||
ngClick: "viewJobEvent(\{\{ jobevent.id \}\})",
|
||||
ngBind: 'jobevent.summary_fields.host.name',
|
||||
searchField: 'hosts__name',
|
||||
nosort: true,
|
||||
@@ -80,7 +81,7 @@ angular.module('JobEventsListDefinition', [])
|
||||
fieldActions: {
|
||||
edit: {
|
||||
label: 'View',
|
||||
ngClick: "editJobEvent(\{\{ jobevent.id \}\})",
|
||||
ngClick: "viewJobEvent(\{\{ jobevent.id \}\})",
|
||||
icon: 'icon-zoom-in',
|
||||
"class": 'btn-small',
|
||||
awToolTip: 'View event details'
|
||||
|
||||
Reference in New Issue
Block a user