From 9e9d28cb803e2c2f37c27e768f3175d36bc6d7b2 Mon Sep 17 00:00:00 2001 From: Aldino Kemal Date: Sat, 6 Apr 2024 08:59:00 +0700 Subject: [PATCH] feat: add join group invitation ui --- src/views/components/GroupCreate.js | 4 +- src/views/components/GroupJoinWithLink.js | 83 +++++++++++++++++++++++ src/views/components/GroupList.js | 1 + src/views/index.html | 8 ++- 4 files changed, 91 insertions(+), 5 deletions(-) create mode 100644 src/views/components/GroupJoinWithLink.js diff --git a/src/views/components/GroupCreate.js b/src/views/components/GroupCreate.js index 41c920d..e4c66ed 100644 --- a/src/views/components/GroupCreate.js +++ b/src/views/components/GroupCreate.js @@ -39,7 +39,6 @@ export default { participants: this.participants.filter(participant => participant !== '').map(participant => `${participant}`) }) this.handleReset(); - this.groups = response.data.results.data; return response.data.message; } catch (error) { if (error.response) { @@ -58,6 +57,7 @@ export default { template: `
+ Group
Create Groups
Add more friends to your group @@ -69,7 +69,7 @@ export default {