Frontend: Fixed a wrong renote cancel condition
This commit is contained in:
parent
dde74dd56b
commit
df275de905
|
@ -230,7 +230,7 @@ const renote = async (viaKeyboard = false, ev?: MouseEvent) => {
|
|||
});
|
||||
}
|
||||
|
||||
if (hasRenotedBefore) {
|
||||
if (hasRenotedBefore.value) {
|
||||
buttonActions.push({
|
||||
text: i18n.ts.unrenote,
|
||||
icon: "ph-trash ph-bold ph-lg",
|
||||
|
|
Loading…
Reference in New Issue