Skip to content

Commit

Permalink
Fix: MediaCard using normal button instead of Button component
Browse files Browse the repository at this point in the history
  • Loading branch information
juzser committed Aug 7, 2024
1 parent 74c49b7 commit 0fa94ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/VideoThumbnail/VideoThumbnail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ div(:class="styles.ThumbnailContainer")
:class="styles.Thumbnail",
:style="{ backgroundImage: `url(${thumbnailUrl})` }",
)
Button(
button(
type="button",
:class="styles.PlayButton",
:aria-label="buttonLabel",
Expand Down Expand Up @@ -43,7 +43,7 @@ div(:class="styles.ThumbnailContainer")

<script setup lang="ts">
import { computed, inject } from 'vue';
import { Button, LegacyStack, Text, Icon } from '@/components';
import { LegacyStack, Text, Icon } from '@/components';
import {
secondsToTimeComponents,
secondsToDurationTranslationKey,
Expand Down

0 comments on commit 0fa94ef

Please sign in to comment.