Skip to content

Commit

Permalink
Fix issue for collaborator update
Browse files Browse the repository at this point in the history
The password rules prevented from updating user without updating password
Now if password is empty we can still update user
  • Loading branch information
yeln4ts committed Jun 22, 2023
1 parent 009a93c commit bbc7f57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/data/collaborators/collaborators.html
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@
type="password"
@keyup.enter="updateCollab()"
outlined
:rules="strongPassword"
:rules="(currentCollab.password) ? strongPassword : ['']"
/>
</q-card-section>
<q-card-section>
Expand Down

0 comments on commit bbc7f57

Please sign in to comment.