fix(frontend): 外部アプリ設定のアプリアイコンに変な余白が入っているのを修正 (#16660)

This commit is contained in:
かっこかり 2025-10-16 18:01:25 +09:00 committed by GitHub
parent 8cfd147555
commit a132a1d3e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -12,7 +12,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<MkFolder v-for="token in items" :key="token.id" :defaultOpen="true">
<template #icon>
<img v-if="token.iconUrl" :class="$style.appIcon" :src="token.iconUrl" alt=""/>
<i v-else class="ti ti-plug"/>
<i v-else class="ti ti-plug"></i>
</template>
<template #label>{{ token.name }}</template>
<template #caption>{{ token.description }}</template>
@ -86,6 +86,7 @@ definePage(() => ({
<style lang="scss" module>
.appIcon {
display: block;
width: 20px;
height: 20px;
border-radius: 4px;