Skip to content

Commit

Permalink
fix: url for lesson help videos
Browse files Browse the repository at this point in the history
  • Loading branch information
pateljannat committed Sep 18, 2024
1 parent b6422d1 commit 14ce5d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/components/Modals/ExplanationVideos.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ const props = defineProps({
})
const file = computed(() => {
if (props.type == 'youtube') return '/Youtube.mp4'
if (props.type == 'quiz') return '/Quiz.mp4'
if (props.type == 'upload') return '/Upload.mp4'
if (props.type == 'youtube') return '/assets/lms/frontend/Youtube.mp4'
if (props.type == 'quiz') return '/assets/lms/frontend/Quiz.mp4'
if (props.type == 'upload') return '/assets/lms/frontend/Upload.mp4'
})
</script>

0 comments on commit 14ce5d7

Please sign in to comment.