This commit is contained in:
syuilo 2022-12-20 10:40:56 +09:00
parent 569d380769
commit 8663ce3b96
1 changed files with 2 additions and 2 deletions

View File

@ -232,7 +232,7 @@ export function getNoteMenu(props: {
} : undefined,
null,
statePromise.then(state => state.isFavorited ? {
icon: 'ti ti-star',
icon: 'ti ti-star-off',
text: i18n.ts.unfavorite,
action: () => toggleFavorite(false),
} : {
@ -255,7 +255,7 @@ export function getNoteMenu(props: {
action: () => toggleThreadMute(true),
}),
appearNote.userId === $i.id ? ($i.pinnedNoteIds || []).includes(appearNote.id) ? {
icon: 'ti ti-pin',
icon: 'ti ti-pinned-off',
text: i18n.ts.unpin,
action: () => togglePin(false),
} : {