Skip to content

Commit

Permalink
fix some stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
garrrikkotua committed Oct 7, 2024
1 parent ad77394 commit 6a86c48
Showing 1 changed file with 11 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,13 @@
</div>
</div>
</el-form>
<div class="w-full flex flex-col mb-6 mt-4">
<div class="w-full flex flex-col mb-6 mt-4" :class="{ 'opacity-50': !isAPIConnectionValid }">
<p class="text-[16px] font-semibold">
Track Groups
</p>
<div class="text-2xs text-gray-500 leading-normal mb-1">
Select which groups you want to track. All topics avaliable in each
group will be monitored.
Select which groups and/or subgroups you want to track. All topics
available in each group will be monitored.
<a
href="https://docs.linuxfoundation.org/lfx/community-management/integrations/groups.io"
target="_blank"
Expand Down Expand Up @@ -367,6 +367,14 @@ const getUserSubscriptions = async () => {

const reverifyAccount = () => {
isAPIConnectionValid.value = false;
// clear data
cookie.value = '';
cookieExpiry.value = '';
form.email = '';
form.password = '';
form.twoFactorCode = '';
userSubscriptions.value = [];
$v.value.$reset();
};

const onBlurEmail = () => {
Expand Down

0 comments on commit 6a86c48

Please sign in to comment.