Skip to content

Commit

Permalink
feat(ui): show message if no tactical reports (#5576)
Browse files Browse the repository at this point in the history
  • Loading branch information
whitdog47 authored Dec 5, 2024
1 parent bcb13e9 commit 5ed6795
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
<template>
<v-container>
<v-timeline density="compact" clipped>
<div v-if="tacticalReports.length === 0" class="text-center">
<v-icon size="x-large">mdi-alert-circle-outline</v-icon>
<p class="text-h6">No tactical reports have been created yet.</p>
</div>
<v-timeline v-else density="compact" clipped>
<v-timeline-item hide-dot>
<v-row>
<v-col class="text-right text-caption">(times in UTC)</v-col>
</v-row>
</v-timeline-item>

<v-timeline-item
v-for="event in tacticalReports"
:key="event.id"
Expand Down

0 comments on commit 5ed6795

Please sign in to comment.