diff --git a/src/components/JournalView/JournalDispatchersList.vue b/src/components/JournalView/JournalDispatchersList.vue index 9c5713d..2e2f4de 100644 --- a/src/components/JournalView/JournalDispatchersList.vue +++ b/src/components/JournalView/JournalDispatchersList.vue @@ -82,13 +82,12 @@ - + @@ -113,9 +112,10 @@ import { DataStatus } from '../../scripts/enums/DataStatus'; import { useStore } from '../../store/store'; import Loading from '../Global/Loading.vue'; import { regions } from '../../data/options.json'; +import AddDataButton from '../Global/AddDataButton.vue'; export default defineComponent({ - components: { Loading }, + components: { Loading, AddDataButton }, mixins: [dateMixin, styleMixin, imageMixin], @@ -195,6 +195,8 @@ table.scenery-history-table { position: relative; text-align: center; + margin-bottom: 1em; + thead { position: sticky; top: 0; @@ -208,7 +210,7 @@ table.scenery-history-table { tr { background-color: var(--_bg-row); border-bottom: 2px solid black; - + &:last-child { border: none; } diff --git a/src/components/JournalView/JournalTimetablesList.vue b/src/components/JournalView/JournalTimetables/JournalTimetablesList.vue similarity index 65% rename from src/components/JournalView/JournalTimetablesList.vue rename to src/components/JournalView/JournalTimetables/JournalTimetablesList.vue index e44f52a..4588265 100644 --- a/src/components/JournalView/JournalTimetablesList.vue +++ b/src/components/JournalView/JournalTimetables/JournalTimetablesList.vue @@ -1,5 +1,5 @@