Skip to content

Commit

Permalink
S2U-28 Silly bug (#11944)
Browse files Browse the repository at this point in the history
  • Loading branch information
bgarciaentornos authored and Miguel Pellicer committed Dec 12, 2023
1 parent f2b7a1c commit 0c2a6f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assignment/tool/src/webapp/js/assignments.js
Original file line number Diff line number Diff line change
Expand Up @@ -1116,7 +1116,7 @@ ASN.getShadowTags = function () {
const tagSelector = document.getElementById('tag_selector');
const tagSelectorVue = document.querySelector("sakai-tag-selector").shadowRoot;
if (tagSelector && tagSelectorVue) {
tagSelector.value = Array.from(tagSelectorVue.shadowRoot.querySelectorAll('input[name="tag[]"'), el => el.value);
tagSelector.value = Array.from(tagSelectorVue.querySelectorAll('input[name="tag[]"'), el => el.value);
}
}

Expand Down

0 comments on commit 0c2a6f5

Please sign in to comment.