Skip to content

Commit a868e91

Browse files
florenmoyafmoya
andauthored
feat: add duration column to HTTP Client in related entries (#1666)
Co-authored-by: fmoya <[email protected]>
1 parent 89a002d commit a868e91

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

dist/app.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/app.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/js/components/RelatedEntries.vue

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -753,6 +753,7 @@ export default {
753753
<th>Verb</th>
754754
<th>URI</th>
755755
<th>Status</th>
756+
<th class="text-right">Duration</th>
756757
<th class="text-right">Happened</th>
757758
<th></th>
758759
</tr>
@@ -788,6 +789,11 @@ export default {
788789
</span>
789790
</td>
790791

792+
<td class="table-fit text-right text-muted">
793+
<span v-if="entry.content.duration">{{ entry.content.duration }}ms</span>
794+
<span v-else>-</span>
795+
</td>
796+
791797
<td
792798
class="table-fit text-right text-muted"
793799
:data-timeago="entry.created_at"

0 commit comments

Comments
 (0)