mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-23 22:56:53 +09:00
fix(client/friendly): フローティングメニューを長押ししたときにプロフィール画像をドラッグできる問題
This commit is contained in:
parent
9977d76714
commit
f06d2fb056
@ -29,6 +29,7 @@
|
||||
- 타임라인에 노트의 답글을 표시하는 옵션의 기본값을 켜짐으로 설정
|
||||
|
||||
### Client
|
||||
- Fix: (Friendly) 플로팅 메뉴를 길게 눌렀을 때 프로필 이미지를 드래그 할 수 있는 문제
|
||||
- Fix: 네트워크 트래픽이 10MB/s를 초과하면 네트워크 통계 위젯의 그래프가 잘못 출력되는 문제
|
||||
|
||||
---
|
||||
|
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<component :is="link ? MkA : 'span'" v-user-preview="preview ? user.id : undefined" v-bind="bound" class="_noSelect" :class="$style.root" :style="{ color }" :title="acct(user)" @click="onClick">
|
||||
<img :class="[$style.inner, {[$style.reduceBlurEffect]: !defaultStore.state.useBlurEffect}]" :src="url" :hash="user?.avatarBlurhash" :cover="true"/>
|
||||
<img :class="[$style.inner, { [$style.reduceBlurEffect]: !defaultStore.state.useBlurEffect, [$style.noDrag]: noDrag }]" :src="url" :hash="user?.avatarBlurhash" :cover="true" :noDrag="true"/>
|
||||
</component>
|
||||
</template>
|
||||
|
||||
@ -77,5 +77,9 @@ watch(() => props.user.avatarBlurhash, () => {
|
||||
&.reduceBlurEffect {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
&.noDrag {
|
||||
-webkit-user-drag: none;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
Loading…
Reference in New Issue
Block a user