MDL-72321 datafilter: Stop disabling jointype field

This was causing behat test failures due to the test trying to
set the disabled jointype field before the filter type was selected.
This commit is contained in:
Mark Johnson 2023-09-01 16:30:40 +01:00 committed by Andrew Nicols
parent 7d6ed82571
commit 4b160a7c7b
No known key found for this signature in database
GPG key ID: 6D1E3157C8CFBF14
4 changed files with 3 additions and 4 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -203,7 +203,6 @@ export default class {
// Update the join list.
this.updateJoinList(JSON.parse(filterDataNode.dataset.joinList), filterRow);
const joinField = filterRow.querySelector(Selectors.filter.fields.join);
joinField.disabled = false;
if (!isNaN(filterJoin)) {
joinField.value = filterJoin;
}