mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-23 22:56:53 +09:00
fix(frontend): 유저 프로필에서 헤더 디자인이 잘못 표시되는 문제
This commit is contained in:
parent
06fc285eb7
commit
d13d8a7f5a
@ -60,6 +60,7 @@ Misskey의 전체 변경 사항을 확인하려면, [CHANGELOG.md#2023xx](CHANGE
|
||||
- Fix: 네비게이션 메뉴의 하단 프로필 영역이 잘못된 디자인으로 표시됨
|
||||
- Fix: 노트를 인용할 때 입력란에 자동으로 포커스가 맞춰지지 않음
|
||||
- Fix: '모든 미디어 노트 간략화하기' 옵션을 활성화하면 미디어가 아닌 노트에도 '닫기' 버튼이 표시될 수 있음
|
||||
- Fix: 유저 프로필에서 헤더 디자인이 잘못 표시되는 문제
|
||||
|
||||
### Server
|
||||
- Feat: 연합에서 노트 수정이 반영됨 (libnare/cp-castella#1)
|
||||
|
@ -13,7 +13,10 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||
</div>
|
||||
<div v-else-if="!thin_ && narrow && !hideTitle && canBack" :class="$style.buttonsLeft"/>
|
||||
<div v-else-if="!thin_ && canBack && (actions && actions.length > 0)" :class="$style.buttonsLeft"/>
|
||||
<div v-if="!thin_ && canBack && (actions && actions.length === 2 && ['index', 'my-notifications', 'messaging'].includes(<string>mainRouter.currentRoute.value.name))" :class="$style.buttonsLeft"/>
|
||||
<div v-if="!thin_ && canBack && (actions && actions.length > 1 && ['index', 'my-notifications', 'messaging'].includes(<string>mainRouter.currentRoute.value.name))" :class="$style.buttonsLeft"/>
|
||||
<div v-if="metadata && metadata.avatar && !thin_ && mainRouter.currentRoute.value.name === 'user' && ($i != null && $i.id != metadata.avatar.id)">
|
||||
<div style="width: 50px;"/>
|
||||
</div>
|
||||
|
||||
<template v-if="metadata">
|
||||
<div v-if="!hideTitle" :class="[$style.titleContainer, { [$style.titleContainer_canBack]: !canBack }]">
|
||||
|
@ -23,6 +23,9 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||
<div v-if="!thin_ && narrow && (actions && actions.length > 1) && !isFriendly && mainRouter.currentRoute.value.name !== 'index'">
|
||||
<div style="width: 34px;"/>
|
||||
</div>
|
||||
<div v-if="metadata && metadata.avatar && !thin_ && mainRouter.currentRoute.value.name === 'user' && ($i != null && $i.id != metadata.avatar.id)">
|
||||
<div style="width: 50px;"/>
|
||||
</div>
|
||||
|
||||
<template v-if="metadata">
|
||||
<div v-if="!hideTitle" :class="[$style.titleContainer, { [$style.titleContainer_canBack]: !canBack }]" @click="top">
|
||||
|
Loading…
Reference in New Issue
Block a user