summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/global/MkResult.vue
diff options
context:
space:
mode:
authorかっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>2025-12-31 13:42:59 +0900
committerGitHub <noreply@github.com>2025-12-31 13:42:59 +0900
commitff7d2c108354113d7bc90f88534c666947914fa9 (patch)
treed05b531f768a0e566cda690e81d136277980e304 /packages/frontend/src/components/global/MkResult.vue
parentfix(frontend): fix build error (#17050) (diff)
downloadmisskey-ff7d2c108354113d7bc90f88534c666947914fa9.tar.gz
misskey-ff7d2c108354113d7bc90f88534c666947914fa9.tar.bz2
misskey-ff7d2c108354113d7bc90f88534c666947914fa9.zip
refactor(frontend): remove undefined css rules (#17051)
Diffstat (limited to 'packages/frontend/src/components/global/MkResult.vue')
-rw-r--r--packages/frontend/src/components/global/MkResult.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/global/MkResult.vue b/packages/frontend/src/components/global/MkResult.vue
index 2071859e57..0dfb23782d 100644
--- a/packages/frontend/src/components/global/MkResult.vue
+++ b/packages/frontend/src/components/global/MkResult.vue
@@ -5,7 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<template>
<Transition :name="prefer.s.animation ? '_transition_zoom' : ''" appear>
- <div :class="[$style.root, { [$style.warn]: type === 'notFound', [$style.error]: type === 'error' }]" class="_gaps">
+ <div :class="$style.root" class="_gaps">
<img v-if="type === 'empty' && instance.infoImageUrl" :src="instance.infoImageUrl" draggable="false" :class="$style.img"/>
<MkSystemIcon v-else-if="type === 'empty'" type="info" :class="$style.icon"/>
<img v-if="type === 'notFound' && instance.notFoundImageUrl" :src="instance.notFoundImageUrl" draggable="false" :class="$style.img"/>