Skip to content
Snippets Groups Projects
Commit ea4b1fe2 authored by Thomas Hackl's avatar Thomas Hackl
Browse files

Resolve "Mehrfachzuordnung von Studienbereichen ignoriert SEM_TREE_ALLOW_BRANCH_ASSIGN"

Closes #3680

Merge request studip/studip!2556
parent 00bfa5b3
No related branches found
No related tags found
No related merge requests found
...@@ -230,7 +230,9 @@ export default { ...@@ -230,7 +230,9 @@ export default {
}, },
computed: { computed: {
isAssignable() { isAssignable() {
return this.assignable && !this.notAssignableNodes?.includes(this.node.id); return this.assignable
&& this.node.attributes.assignable
&& !this.notAssignableNodes?.includes(this.node.id);
} }
}, },
mounted() { mounted() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment