fix(frontend): ログアウト状態でのノートメニュー内の詳細ボタンの表示をログイン状態と同じに (#11896)
* fix(frontend): ログアウト状態でのノートの詳細ボタンの表示をログイン状態と同じに * Update CHANGELOG.md
This commit is contained in:
parent
5318532a8d
commit
dcaea66dbf
|
@ -17,7 +17,7 @@
|
||||||
- Enhance: モデレーションログ機能の強化
|
- Enhance: モデレーションログ機能の強化
|
||||||
|
|
||||||
### Client
|
### Client
|
||||||
-
|
- Fix: ノートのメニューにある「詳細」ボタンの表示がログイン/ログアウト状態で統一されていない問題を修正
|
||||||
|
|
||||||
### Server
|
### Server
|
||||||
- Fix: お知らせのページネーションが機能しない
|
- Fix: お知らせのページネーションが機能しない
|
||||||
|
|
|
@ -368,8 +368,8 @@ export function getNoteMenu(props: {
|
||||||
.filter(x => x !== undefined);
|
.filter(x => x !== undefined);
|
||||||
} else {
|
} else {
|
||||||
menu = [{
|
menu = [{
|
||||||
icon: 'ti ti-external-link',
|
icon: 'ti ti-info-circle',
|
||||||
text: i18n.ts.detailed,
|
text: i18n.ts.details,
|
||||||
action: openDetail,
|
action: openDetail,
|
||||||
}, {
|
}, {
|
||||||
icon: 'ti ti-copy',
|
icon: 'ti ti-copy',
|
||||||
|
|
Loading…
Reference in New Issue