Skip to content

Commit 7c3d0c0

Browse files
authored
Small fixes (#111)
* Fix table spacing * Add back arrow to Discovery Metadata
1 parent dd455a1 commit 7c3d0c0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/data/DataTable.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</v-row>
1313
</v-container>
1414

15-
<v-table v-show="title !== ''" fixed-header height="500px">
15+
<v-table v-show="title !== ''" fixed-header height="470px">
1616
<thead>
1717
<tr>
1818
<th class="text-center">

src/components/station/StationInfo.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
{{ selectedStation?.properties.name || $t("chart.station") }}
1010
</v-toolbar-title>
1111

12-
<template v-slot:prepend v-if="selectedStation">
13-
<v-btn icon @click="store.clearSelectedStation">
12+
<template v-slot:prepend>
13+
<v-btn icon @click="selectedStation ? store.clearSelectedStation() : $router.push('/')">
1414
<v-icon icon="mdi-arrow-left"></v-icon>
1515
</v-btn>
1616
</template>

0 commit comments

Comments
 (0)