mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-01-26 22:40:45 +00:00
Update ContextMenu component, fix account url paths
This commit is contained in:
parent
e09a14d892
commit
01ca1edd84
1 changed files with 2 additions and 2 deletions
|
@ -636,7 +636,7 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
statusUrl(status) {
|
statusUrl(status) {
|
||||||
if(status.local == true) {
|
if(status.account.local == true) {
|
||||||
return status.url;
|
return status.url;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -644,7 +644,7 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
profileUrl(status) {
|
profileUrl(status) {
|
||||||
if(status.local == true) {
|
if(status.account.local == true) {
|
||||||
return status.account.url;
|
return status.account.url;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue