From e6ba05b52c23812195968f734c1827513dd1e34c Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Wed, 11 May 2022 16:00:50 -0400 Subject: [PATCH] [O] Make friends clickable --- src/views/others/Friends.vue | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/views/others/Friends.vue b/src/views/others/Friends.vue index 6489b73..a2c83f7 100644 --- a/src/views/others/Friends.vue +++ b/src/views/others/Friends.vue @@ -6,9 +6,11 @@
-
-
{{ f.name }}
- +
+ +
+
{{ f.name }}
+
@@ -41,6 +43,11 @@ export default class Friends extends Vue if (!f.avatar.startsWith('http')) f.avatar = `${hosts.content}/${f.avatar}` }) } + + click(f: Friend) + { + window.open(f.link) + } }