Skip to content

Commit

Permalink
Prevent wrapping of not-connected status pill
Browse files Browse the repository at this point in the history
  • Loading branch information
knolleary committed Jul 14, 2023
1 parent eed18a6 commit d0b7ebc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/pages/device/Overview.vue
Expand Up @@ -120,7 +120,7 @@
<table class="table-fixed w-full" v-if="device">
<tr class="border-b">
<td class="w-1/4 font-medium">Editor Access</td>
<td class="w-26 font-medium">
<td class="w-28 font-medium">
<div class="forge-badge" :class="'forge-status-' + (editorEnabled ? (editorTunnelConnected ? 'running' : 'error') : 'stopped')">
<span v-if="editorEnabled">
<span v-if="editorTunnelConnected">enabled</span>
Expand Down Expand Up @@ -157,7 +157,7 @@
</tr>
<tr class="border-b">
<td class="w-1/4 font-medium">Device Flows</td>
<td class="w-26 font-medium">&nbsp;</td>
<td class="w-28 font-medium">&nbsp;</td>
<td class="py-2">
<ff-button
kind="secondary"
Expand Down

0 comments on commit d0b7ebc

Please sign in to comment.