Skip to content

Commit

Permalink
[server/status] cleanup services table on status page
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger committed Jun 15, 2016
1 parent ef9eba5 commit fe67508
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/plugins/status_page/public/status_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,20 @@ <h4 ng-if="!ui.statuses && !ui.loading" class="missing_statuses">

<table class="status_statuses_breakdown" ng-if="ui.statuses.services">
<tr class="row">
<th class="col-xs-2">Service</th>
<th class="col-xs-4">Service</th>
<th class="col-xs-8">Status</th>
</tr>
<tr
ng-repeat="status in ui.statuses.services"
class="status_row status_state_default status_state_{{status.state}} row">

<td class="col-xs-2 status_name">{{status.id}}</td>
<td class="col-xs-4 status_name">{{status.id}}</td>
<td class="col-xs-8 status_message">
<i class="fa status_state_color status_state_icon" />
{{status.message}}
</td>
</tr>
</table>

<table class="status_statuses_breakdown" data-test-subj="pluginStatusBreakdown" ng-if="ui.statuses.plugins">
<tr class="row">
<th class="col-xs-2">Plugin</th>
Expand Down
1 change: 1 addition & 0 deletions src/plugins/status_page/public/status_page.less
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
.status_statuses_breakdown {
margin-left: 0;
margin-right: 0;
margin-bottom: 30px;

.status_row {
height:30px;
Expand Down

0 comments on commit fe67508

Please sign in to comment.