Skip to content

Commit dc799b9

Browse files
[autofix.ci] apply automated fixes
1 parent 1e0788f commit dc799b9

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

app/pages/brand.vue

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,11 @@ async function handlePngDownload(logo: (typeof logos)[number]) {
137137
<span
138138
class="size-[1em]"
139139
aria-hidden="true"
140-
:class="pngLoading.has(logo.src) ? 'i-lucide:loader-circle animate-spin' : 'i-lucide:download'"
140+
:class="
141+
pngLoading.has(logo.src)
142+
? 'i-lucide:loader-circle animate-spin'
143+
: 'i-lucide:download'
144+
"
141145
/>
142146
{{ $t('brand.logos.download_png') }}
143147
</ButtonBase>
@@ -195,7 +199,11 @@ async function handlePngDownload(logo: (typeof logos)[number]) {
195199
<span
196200
class="size-[1em]"
197201
aria-hidden="true"
198-
:class="pngLoading.has(logo.src) ? 'i-lucide:loader-circle animate-spin' : 'i-lucide:download'"
202+
:class="
203+
pngLoading.has(logo.src)
204+
? 'i-lucide:loader-circle animate-spin'
205+
: 'i-lucide:download'
206+
"
199207
/>
200208
{{ $t('brand.logos.download_png') }}
201209
</ButtonBase>

0 commit comments

Comments
 (0)