diff --git a/packages/hoppscotch-app/components/app/Header.vue b/packages/hoppscotch-app/components/app/Header.vue index 04804d63f..90e656468 100644 --- a/packages/hoppscotch-app/components/app/Header.vue +++ b/packages/hoppscotch-app/components/app/Header.vue @@ -47,49 +47,65 @@ :label="$t('header.login')" @click.native="showLogin = true" /> - - - - - - - - + + + + + + @@ -127,6 +143,7 @@ export default defineComponent({ showInstallPrompt: null, showLogin: false, isOnLine: navigator.onLine, + showTeamsModal: false, } }, async mounted() { diff --git a/packages/hoppscotch-app/components/teams/Modal.vue b/packages/hoppscotch-app/components/teams/Modal.vue new file mode 100644 index 000000000..bbe25ad3b --- /dev/null +++ b/packages/hoppscotch-app/components/teams/Modal.vue @@ -0,0 +1,26 @@ + + + diff --git a/packages/hoppscotch-app/components/teams/index.vue b/packages/hoppscotch-app/components/teams/index.vue index 104eed298..6f736033d 100644 --- a/packages/hoppscotch-app/components/teams/index.vue +++ b/packages/hoppscotch-app/components/teams/index.vue @@ -26,7 +26,8 @@
() + const showModalAdd = ref(false) const showModalEdit = ref(false) const editingTeam = ref({}) // TODO: Check this out diff --git a/packages/hoppscotch-app/locales/en.json b/packages/hoppscotch-app/locales/en.json index e7d6fcdf4..89ae5bb95 100644 --- a/packages/hoppscotch-app/locales/en.json +++ b/packages/hoppscotch-app/locales/en.json @@ -472,6 +472,8 @@ "exit_disabled": "Only owner cannot exit the team", "invalid_email_format": "Email format is invalid", "invalid_member_permission": "Please provide a valid permission to the team member", + "invite": "Invite", + "invite_tooltip": "Invite people to this workspace", "join_beta": "Join the beta program to access teams.", "left": "You left the team", "member_removed": "User removed", diff --git a/packages/hoppscotch-app/pages/profile.vue b/packages/hoppscotch-app/pages/profile.vue index 424192511..8d817aa47 100644 --- a/packages/hoppscotch-app/pages/profile.vue +++ b/packages/hoppscotch-app/pages/profile.vue @@ -73,7 +73,7 @@ - +