1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2025-01-19 16:23:08 +09:00

fix(frontend): MkA 컴포넌트를 사용하는 항목이 작동하지 않을 수 있음(읽음 표시, 테스트 알림, 기본 업로드 위치 등)

This commit is contained in:
NoriDev 2024-04-03 14:22:32 +09:00
parent be3198071f
commit 319a5370cd
2 changed files with 2 additions and 1 deletions

View File

@ -30,6 +30,7 @@ Misskey의 전체 변경 사항을 확인하려면, [CHANGELOG.md#2024xx](CHANGE
### Client
- Fix: 노트를 내보낼 때 노트의 편집 기록을 포함
- Fix: MkA 컴포넌트를 사용하는 항목이 작동하지 않을 수 있음(읽음 표시, 테스트 알림, 기본 업로드 위치 등)
### Server
- Enhance: 디버깅을 보다 편하게 할 수 있도록 vite 생성 파일의 이름 개선

View File

@ -4,7 +4,7 @@ SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
<a ref="el" v-vibrate="defaultStore.state.vibrateSystem ? 5 : []" :href="to" :class="active ? activeClass : null" @click.prevent.stop="nav" @contextmenu.prevent.stop="onContextmenu">
<a ref="el" v-vibrate="defaultStore.state.vibrateSystem ? 5 : []" :href="to" :class="active ? activeClass : null" @click.prevent="nav" @contextmenu.prevent.stop="onContextmenu">
<slot></slot>
</a>
</template>