Skip to content

Commit

Permalink
fix balance false display on dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Oct 22, 2020
1 parent 2d6e600 commit 88c84ac
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion resources/js/screens/dashboard.vue
Expand Up @@ -310,9 +310,12 @@
<td>{{ superVisorDisplayName(supervisor.name, worker.name) }}</td>
<td>{{ countProcesses(supervisor.processes) }}</td>
<td>{{ supervisor.options.queue.replace(/,/g, ', ') }}</td>
<td class="text-right">
<td class="text-right" v-if="supervisor.options.balance">
({{ supervisor.options.balance.charAt(0).toUpperCase() + supervisor.options.balance.slice(1) }})
</td>
<td class="text-right" v-else>
(Disabled)
</td>
</tr>
</tbody>
</table>
Expand Down

0 comments on commit 88c84ac

Please sign in to comment.