Skip to content

Commit

Permalink
Fix blank Map view page
Browse files Browse the repository at this point in the history
  • Loading branch information
SmilyOrg committed Aug 18, 2024
1 parent 05cf31d commit 10e26ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions ui/src/components/MapViewer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ const props = defineProps({
debug: Object,
fullpage: Boolean,
scrollbar: Object,
tweaks: String,
});
const emit = defineEmits({
Expand All @@ -103,6 +104,7 @@ const {
search,
selectTagId,
debug,
tweaks,
} = toRefs(props);
const viewer = ref(null);
Expand All @@ -124,6 +126,7 @@ const { scene, recreate: recreateScene, loadSpeed } = useScene({
imageHeight,
viewport: staticViewport,
search,
tweaks,
});
const {
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/ScrollViewer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ const {
sort,
imageHeight,
search,
tweaks,
selectTagId,
debug,
tweaks,
} = toRefs(props);
const viewer = ref(null);
Expand Down

0 comments on commit 10e26ba

Please sign in to comment.