Skip to content

Commit

Permalink
Prevent horizontal scrolling in Dashboard supervisors section
Browse files Browse the repository at this point in the history
  • Loading branch information
halaei committed Feb 6, 2019
1 parent ea87772 commit 0b425fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/js/pages/Dashboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@
<tbody>
<tr v-for="queue in workload">
<td>
<span>{{ queue.name }}</span>
<span>{{ queue.name.replace(/,/g, ', ') }}</span>
</td>
<td>{{ queue.processes ? queue.processes.toLocaleString() : 0 }}</td>
<td>{{ queue.length ? queue.length.toLocaleString() : 0 }}</td>
Expand Down Expand Up @@ -281,7 +281,7 @@
<span class="fw7">{{ superVisorDisplayName(supervisor.name, worker.name) }}</span>
</td>
<td>{{ countProcesses(supervisor.processes) }}</td>
<td>{{ supervisor.options.queue }}</td>
<td>{{ supervisor.options.queue.replace(/,/g, ', ') }}</td>
<td class="d-flex align-items-center">
<status :active="supervisor.options.balance" class="mr-2"/>
<span v-if="supervisor.options.balance">
Expand Down

0 comments on commit 0b425fe

Please sign in to comment.