Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
recca0120 authored Jun 19, 2016
1 parent d1e862a commit 32f9da6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions resources/views/EventPanel/panel.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
</tr>
</thead>
<tbody>
<?php foreach ($logs as $key => $value): ?>
<?php foreach ($logs as $key => $log): ?>
<tr>
<th>
<span class="tracy-dump-object"><?php echo array_get($value, 'firing') ?></span><br />
<?php echo array_get($value, 'editorLink') ?><br />
<span class="tracy-dump-object"><?php echo array_get($log, 'firing') ?></span><br />
<?php echo array_get($log, 'editorLink') ?><br />
</th>
<td>
<?php if ($dumpMethod === 'tracy'): ?>
Expand All @@ -28,7 +28,7 @@
<script>
(function() {
var el = document.getElementById("Laravel-EventPanel-<?php echo $key; ?>");
el.innerHTML = TracyDump(<?php echo json_encode($value) ?>);
el.innerHTML = TracyDump(<?php echo json_encode($log) ?>);
})();
</script>
<?php endif ?>
Expand Down

0 comments on commit 32f9da6

Please sign in to comment.