aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--viewer/src/@types/scrollposition.d.ts2
-rw-r--r--viewer/src/views/MainLayout.vue1
2 files changed, 2 insertions, 1 deletions
diff --git a/viewer/src/@types/scrollposition.d.ts b/viewer/src/@types/scrollposition.d.ts
index 2f17515..0102eab 100644
--- a/viewer/src/@types/scrollposition.d.ts
+++ b/viewer/src/@types/scrollposition.d.ts
@@ -17,4 +17,4 @@
17-- along with this program. If not, see <https://www.gnu.org/licenses/>. 17-- along with this program. If not, see <https://www.gnu.org/licenses/>.
18*/ 18*/
19 19
20type ScrollPosition = Record<string, number>; 20export type ScrollPosition = Record<string, number>;
diff --git a/viewer/src/views/MainLayout.vue b/viewer/src/views/MainLayout.vue
index edca4bf..13b17b4 100644
--- a/viewer/src/views/MainLayout.vue
+++ b/viewer/src/views/MainLayout.vue
@@ -29,6 +29,7 @@
29</template> 29</template>
30 30
31<script lang="ts"> 31<script lang="ts">
32import { ScrollPosition } from "@/@types/scrollposition";
32import { Component, Ref, Vue, Watch } from "vue-property-decorator"; 33import { Component, Ref, Vue, Watch } from "vue-property-decorator";
33import { Route } from "vue-router"; 34import { Route } from "vue-router";
34import PanelLeft from "./PanelLeft.vue"; 35import PanelLeft from "./PanelLeft.vue";