1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-21 19:15:32 +02:00
This commit is contained in:
syuilo
2025-05-07 13:41:51 +09:00
parent 978289535b
commit 86996d9563
2 changed files with 54 additions and 27 deletions

View File

@@ -18,11 +18,11 @@ SPDX-License-Identifier: AGPL-3.0-only
]"
></MkSelect>
<MkSystemIcon v-if="iconType === 'info'" type="info" style="width: 60px;"/>
<MkSystemIcon v-if="iconType === 'question'" type="question" style="width: 60px;"/>
<MkSystemIcon v-if="iconType === 'success'" type="success" style="width: 60px;"/>
<MkSystemIcon v-if="iconType === 'warn'" type="warn" style="width: 60px;"/>
<MkSystemIcon v-if="iconType === 'error'" type="error" style="width: 60px;"/>
<MkSystemIcon v-if="iconType === 'info'" type="info" style="width: 150px;"/>
<MkSystemIcon v-if="iconType === 'question'" type="question" style="width: 150px;"/>
<MkSystemIcon v-if="iconType === 'success'" type="success" style="width: 150px;"/>
<MkSystemIcon v-if="iconType === 'warn'" type="warn" style="width: 150px;"/>
<MkSystemIcon v-if="iconType === 'error'" type="error" style="width: 150px;"/>
<MkSelect
v-model="iconType" :items="[
{ label: 'info', value: 'info' },