Skip to content

Commit

Permalink
Make toolbar the same size as top bar and remove report id from dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
hvangeffen committed Nov 12, 2024
1 parent 321cb7c commit 6bf7709
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/ReportsDisplayView.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div v-if="reports?.length" class="d-flex flex-column h-100 w-100">
<v-toolbar class="py-1" density="compact">
<v-toolbar density="compact">
<template v-if="reports.length === 1">
<div class="ml-5">{{ reportToTitle(reports[0]) }}</div>
<v-spacer />
Expand Down Expand Up @@ -106,7 +106,7 @@ function reportItemToId(item: ReportItem) {
}
function reportItemToTitle(item: ReportItem) {
return `${item.timeZero} - ${item.reportId}`
return `${item.timeZero}`
}
function reportToTitle(item: Report) {
Expand Down

0 comments on commit 6bf7709

Please sign in to comment.