Skip to content

Commit

Permalink
fix(ui): unable to add association
Browse files Browse the repository at this point in the history
Fixes #3822
  • Loading branch information
robertsLando committed Jul 22, 2024
1 parent 438e38e commit 903ed58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/dialogs/DialogAssociation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
<v-btn
color="blue darken-1"
text
:disabled="nodesInGroup >= maxNodes || associationError"
:disabled="nodesInGroup >= maxNodes || !!associationError"
@click="$refs.form.validate() && $emit('add', group)"
>ADD</v-btn
>
Expand Down

0 comments on commit 903ed58

Please sign in to comment.