Skip to content

Commit

Permalink
fix: missing icons in video playback controls
Browse files Browse the repository at this point in the history
Signed-off-by: Fernando Fernández <ferferga@hotmail.com>
  • Loading branch information
ferferga committed Jan 26, 2025
1 parent df5b7a8 commit 3b4795f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/Playback/MiniVideoPlayer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<VBtn
icon
@click.passive="playerElement.toggleFullscreenVideoPlayer">
<JIcon class="i:mdi-arrow-expand-all" />
<JIcon class="i-mdi:arrow-expand-all" />
</VBtn>
<VSpacer />
<VBtn
Expand Down
12 changes: 8 additions & 4 deletions frontend/src/pages/playback/video.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,15 @@
<div class="d-flex align-center py-2 px-4">
<div class="d-flex">
<VBtn
icon="i-mdi:close"
@click="playbackManager.stop" />
icon
@click="playbackManager.stop">
<JIcon class="i-mdi:close" />
</VBtn>
<VBtn
icon="i-mdi:chevron-down"
@click="playerElement.toggleFullscreenVideoPlayer" />
icon
@click="playerElement.toggleFullscreenVideoPlayer">
<JIcon class="i-mdi:chevron-down" />
</VBtn>
</div>
<div class="d-flex ml-auto">
<CastButton />
Expand Down

0 comments on commit 3b4795f

Please sign in to comment.