Removed Status filter from Job Events page. Changed form attribute 'notSearchable' to 'searchable' -cause it just makes more sense.

This commit is contained in:
chouseknecht
2013-06-28 11:40:31 -04:00
parent 7065086a1c
commit 114bc05b8d
4 changed files with 12 additions and 11 deletions

View File

@@ -22,7 +22,7 @@ angular.module('JobEventsListDefinition', [])
label: 'Date',
key: true,
nosort: true,
notSearchable: true,
searchable: false,
ngClick: "viewJobEvent(\{\{ jobevent.id \}\})",
},
event_display: {
@@ -30,7 +30,7 @@ angular.module('JobEventsListDefinition', [])
hasChildren: true,
ngClick: "viewJobEvent(\{\{ jobevent.id \}\})",
nosort: true,
notSearchable: true
searchable: false
},
host: {
label: 'Host',
@@ -47,7 +47,8 @@ angular.module('JobEventsListDefinition', [])
searchField: 'failed',
searchType: 'boolean',
searchOptions: [{ name: "success", value: 0 }, { name: "error", value: 1 }],
nosort: true
nosort: true,
searchable: false,
}
},