Skip to content

Commit

Permalink
linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislawK committed Oct 18, 2023
1 parent 53e1737 commit a2970a3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ export default {
slack: '',
phone: '',
});
return { v$: useVuelidate(), form };
},
data() {
Expand All @@ -236,6 +237,7 @@ export default {
: !Object.values(this.getParticipants).find(
(user) => user.email === value
);
return exists;
};
const githubExists = (value) => {
Expand All @@ -245,6 +247,7 @@ export default {
(user) => user.github_username === value
);
};
return {
form: {
email: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export default {
set(selectedParticipant) {
const newSelectedParticipant =
typeof selectedParticipant === 'object' ? selectedParticipant : null;
this.$emit('input', newSelectedParticipant);
},
},
Expand Down
1 change: 1 addition & 0 deletions frontend/src/components/Login/LoginForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ export default {
github_username: '',
password: '',
});
return {
v$: useVuelidate(),
loginForm,
Expand Down

0 comments on commit a2970a3

Please sign in to comment.