Skip to content

Commit

Permalink
Remove payload from job panel
Browse files Browse the repository at this point in the history
  • Loading branch information
dakota committed Aug 15, 2018
1 parent 42c05e4 commit b6b9a78
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/Template/Element/jobs_panel.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ if (empty($jobs)) {
<th class="left"><?= __d('debug_kit', 'Sequence') ?></th>
<th class="left"><?= __d('debug_kit', 'Priority') ?></th>
<th class="left"><?= __d('debug_kit', 'Is queued?') ?></th>
<th class="left" style="width: 40%;"><?= __d('debug_kit', 'Payload') ?></th>
</tr>
<?php foreach ($jobs as $k => $job) : ?>
<tr>
Expand All @@ -24,9 +23,6 @@ if (empty($jobs)) {
<td class="left"><?= $job['sequence'] ?: 'None' ?></td>
<td class="left"><?= $job['priority'] ?></td>
<td class="left"><?= $job['pushedToBroker'] ? '&#x2714;' : '&#x2715;' ?></td>
<td class="left">
<pre><code><?= json_encode($job['payload'], JSON_PRETTY_PRINT) ?></code></pre>
</td>
</tr>
<?php endforeach; ?>
</table>

0 comments on commit b6b9a78

Please sign in to comment.