Skip to content

Commit

Permalink
Merge pull request #1021 from pateljannat/fix-help-video-url
Browse files Browse the repository at this point in the history
fix: url for lesson help videos
  • Loading branch information
pateljannat authored Sep 18, 2024
2 parents b6422d1 + 14ce5d7 commit 545326a
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 545326a

Please sign in to comment.