remove name column from Host Events modal, resolves #1132

This commit is contained in:
Leigh Johnson 2016-03-29 17:12:30 -04:00
parent d0f3248d79
commit 2ef6f764d2
3 changed files with 4 additions and 3 deletions

View File

@ -47,6 +47,7 @@
padding-bottom: 15px;
}
.HostEvents-title{
text-transform: uppercase;
color: @default-interface-txt;
font-weight: 600;
}

View File

@ -107,7 +107,9 @@
});
var init = function(){
$scope.hostName = $stateParams.hostName;
// create filter dropdown
console.log($stateParams)
CreateSelect2({
element: '.HostEvents-select',
multiple: false

View File

@ -3,7 +3,7 @@
<div class="modal-content">
<div class="modal-body">
<div class="HostEvents-header">
<span class="HostEvents-title">HOST EVENTS</span>
<span class="HostEvents-title">HOST EVENTS | {{hostName}}</span>
<!-- Close -->
<button ui-sref="jobDetail" type="button" class="close">
<i class="fa fa fa-times-circle"></i>
@ -29,7 +29,6 @@
<table class="table">
<!-- column labels -->
<th ng-hide="results.length == 0" class="HostEvents-table--header">STATUS</th>
<th ng-hide="results.length == 0" class="HostEvents-table--header">HOST</th>
<th ng-hide="results.length == 0" class="HostEvents-table--header">PLAY</th>
<th ng-hide="results.length == 0" class="HostEvents-table--header">TASK</th>
<!-- result rows -->
@ -41,7 +40,6 @@
</a>
{{event.status}}
</td>
<td class=HostEvents-table--cell>{{event.host_name}}</td>
<td class=HostEvents-table--cell>{{event.play}}</td>
<td class=HostEvents-table--cell>{{event.task}}</td>
</tr>