Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/media_source/system/js/showon.es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ class Showon {
itemval = Array.from(originField.querySelectorAll('option:checked')).map((el) => el.value);
} else {
// Select lists, text-area etc. Note that multiple-select list returns
// an Array here s0 we can always treat 'itemval' as an array
// an Array here so we can always treat 'itemval' as an array
itemval = document.getElementById(originId).value;
// A multi-select <select> $field will return null when no elements are
// selected so we need to define itemval accordingly
Expand Down