浏览代码

Update ContextMenu component, fix account url paths

Daniel Supernault 3 年之前
父节点
当前提交
01ca1edd84
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      resources/assets/js/components/partials/ContextMenu.vue

+ 2 - 2
resources/assets/js/components/partials/ContextMenu.vue

@@ -636,7 +636,7 @@
 			},
 
 			statusUrl(status) {
-				if(status.local == true) {
+				if(status.account.local == true) {
 					return status.url;
 				}
 
@@ -644,7 +644,7 @@
 			},
 
 			profileUrl(status) {
-				if(status.local == true) {
+				if(status.account.local == true) {
 					return status.account.url;
 				}