fix html error
All checks were successful
Lint / pnpm_install (pull_request) Successful in 33s
API report (misskey.js) / report (pull_request) Successful in 1m19s
Test (misskey.js) / test (22.x) (pull_request) Successful in 1m17s
Test (frontend) / vitest (22.x) (pull_request) Successful in 2m29s
Test (production install and build) / production (22.x) (pull_request) Successful in 2m1s
Test (backend) / unit (22.x) (pull_request) Successful in 4m39s
Lint / lint (backend) (pull_request) Successful in 1m50s
Test (backend) / validate-api-json (22.x) (pull_request) Successful in 2m47s
Lint / lint (misskey-js) (pull_request) Successful in 50s
Lint / lint (sw) (pull_request) Successful in 45s
Lint / typecheck (misskey-js) (pull_request) Successful in 43s
Lint / typecheck (backend) (pull_request) Successful in 2m9s
Test (backend) / e2e (22.x) (pull_request) Successful in 9m50s
Lint / lint (frontend) (pull_request) Successful in 11m32s

This commit is contained in:
Leah 2025-03-27 20:49:11 +01:00
parent 7aba1e908f
commit 40b9224d18

View file

@ -73,7 +73,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</button>
<button v-else :tabindex="i" class="_button" role="menuitem" :class="[$style.item, { [$style.danger]: item.danger, [$style.active]: getValue(item.active) }]" :disabled="getValue(item.active)" @click="clicked(item.action, $event)" @mouseenter.passive="onItemMouseEnter(item)" @mouseleave.passive="onItemMouseLeave(item)">
<i v-if="item.icon" class="ti-fw" :class="[$style.icon, item.icon]"></i>
<img v-if="item.iconURL" :src="item.iconURL" alt="Icon" class="ti-fw" :class="[$style.icon]"></img>
<img v-if="item.iconURL" :src="item.iconURL" alt="Icon" class="ti-fw" :class="[$style.icon]" />
<MkAvatar v-if="item.avatar" :user="item.avatar" :class="$style.avatar"/>
<div :class="$style.item_content">
<span :class="$style.item_content_text">{{ item.text }}</span>