Skip to content

Commit

Permalink
Fix issues with merge
Browse files Browse the repository at this point in the history
  • Loading branch information
mzur committed Feb 13, 2025
1 parent 2259247 commit 2a71366
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ export default {
this.filesObj[this.ids[index]] = filename;
});
Keyboard.on('p', this.capture);
Events.$on(['annotations.map.init', 'videos.map.init'], this.setMap);
Events.on('videos.map.init', this.setMap);
Events.on('annotations.map.init', this.setMap);
},
};
</script>
2 changes: 1 addition & 1 deletion resources/views/volumes/videos/index/meta.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@push('scripts')
<script type="text/javascript">
<script type="module">
biigle.$declare('videos.times', {!! collect($video->taken_at) !!});
biigle.$declare('videos.metadata', {!! collect($video->metadata) !!});
biigle.$declare('videos.metadataMap', {!! collect($metadataMap) !!});
Expand Down

0 comments on commit 2a71366

Please sign in to comment.