Skip to content

Commit 00284a9

Browse files
authored
Merge pull request #361 from vuejs-jp/revert-357-fix/resize-images-partially
Revert "fix: 画像サイズを修正"
2 parents ea27cdd + b6c46d1 commit 00284a9

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

apps/web/app/components/sponsor/SponsorList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const currentLocale = useLocaleCurrent().locale
2222
class="sponsor-list-item-link"
2323
:to="`${currentLocale === 'ja' ? '/' : `/${currentLocale}/`}sponsors/${item['detail_page_id']}`"
2424
>
25-
<NuxtImg
25+
<img
2626
class="sponsor-list-item-image"
2727
:src="item['image_url']"
2828
:alt="item.name"

packages/ui/components/speaker/Avatar.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,10 @@ const size = computed(() => {
1919
</script>
2020

2121
<template>
22-
<NuxtImg
22+
<img
2323
:src="src"
2424
:alt="alt"
2525
:loading="loading"
26-
placeholder
2726
:width="size"
2827
:height="size"
2928
fit="cover"

0 commit comments

Comments
 (0)