Skip to content
This repository was archived by the owner on Sep 3, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading