File tree Expand file tree Collapse file tree 1 file changed +11
-9
lines changed
packages/vuetify/src/labs/VVideo Expand file tree Collapse file tree 1 file changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -466,18 +466,20 @@ export const VVideo = genericComponent<VVideoSlots>()({
466
466
...roundedContainerClasses . value ,
467
467
] }
468
468
>
469
- { overlayPlayIcon }
469
+ { props . variant === 'player' && overlayPlayIcon }
470
470
</ div >
471
471
</ VImg >
472
472
</ VOverlay >
473
- < VOverlay
474
- key = "loading-overlay"
475
- modelValue = { state . value === 'loading' || waiting . value }
476
- opacity = ".1"
477
- { ...overlayProps }
478
- >
479
- { loadingIndicator }
480
- </ VOverlay >
473
+ { props . variant === 'player' && (
474
+ < VOverlay
475
+ key = "loading-overlay"
476
+ modelValue = { state . value === 'loading' || waiting . value }
477
+ opacity = ".1"
478
+ { ...overlayProps }
479
+ >
480
+ { loadingIndicator }
481
+ </ VOverlay >
482
+ ) }
481
483
</ div >
482
484
< MaybeTransition key = "actions" transition = { props . controlsTransition } >
483
485
{ showControls && (
You can’t perform that action at this time.
0 commit comments