Skip to content

Commit

Permalink
fix: only show audio message when track ID matches active
Browse files Browse the repository at this point in the history
  • Loading branch information
Anuj012004 committed Dec 31, 2024
1 parent afe7859 commit 411fa85
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/components/VAudioTrack/VAudioTrack.vue
Original file line number Diff line number Diff line change
Expand Up @@ -296,9 +296,9 @@ watch(
/* Timekeeping */
const message = computed(() =>
activeMediaStore.message
? t(`audioTrack.messages.${activeMediaStore.message}`)
const message = computed(() =>
activeMediaStore.id === props.audio.id && activeMediaStore.message
? i18n.t(`audioTrack.messages.${activeMediaStore.message}`).toString()
: ""
)
Expand Down

0 comments on commit 411fa85

Please sign in to comment.