Skip to content

Commit

Permalink
Clean up UI
Browse files Browse the repository at this point in the history
  • Loading branch information
wkramer committed Sep 23, 2024
1 parent d6e2d15 commit f97c509
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/views/ReportsDisplayView.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<template>
<div v-if="reports?.length" class="d-flex flex-column h-100 px-4 pt-4">
<div v-if="reports?.length" class="d-flex flex-column h-100">
<v-toolbar
class="py-1"
:title="reports.length === 1 ? reports[0].moduleInstanceId : undefined"
density="compact"
>
<v-select
v-if="reports.length > 1"
Expand All @@ -14,6 +15,8 @@
hide-details
label="Report"
class="px-2"
variant="solo-filled"
density="compact"
/>
<v-select
v-model="selectedReportItem"
Expand All @@ -24,6 +27,8 @@
hide-details
label="Analysis time"
class="pe-2 flex-0-0"
variant="solo-filled"
density="compact"
/>
</v-toolbar>
<iframe :key="url" :src="url" class="html-content" />
Expand Down

0 comments on commit f97c509

Please sign in to comment.