Skip to content

Commit

Permalink
Don't wrap between icons and health text
Browse files Browse the repository at this point in the history
  • Loading branch information
DingoEatingFuzz committed May 7, 2020
1 parent 75a150f commit 6b46b28
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions ui/app/templates/components/plugin-allocation-row.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,13 @@
</span>
</td>

<td data-test-healthy>
{{x-icon
(if pluginAllocation.healthy "check-circle-outline" "minus-circle-outline")
class=(if pluginAllocation.healthy "is-success" "is-danger")}}
{{if pluginAllocation.healthy "Healthy" "Unhealthy"}}
<td data-test-health>
<span class="nowrap">
{{x-icon
(if pluginAllocation.healthy "check-circle-outline" "minus-circle-outline")
class=(if pluginAllocation.healthy "is-success" "is-danger")}}
{{if pluginAllocation.healthy "Healthy" "Unhealthy"}}
</span>
</td>

<td data-test-client>{{#link-to "clients.client" allocation.node}}{{allocation.node.shortId}}{{/link-to}}</td>
Expand Down

0 comments on commit 6b46b28

Please sign in to comment.