fix: super call

This commit is contained in:
Faris Ansari 2021-05-11 19:41:46 +05:30
parent bd487f7ef3
commit fb0f9180d0

View file

@ -67,7 +67,7 @@ frappe.ui.form.ControlTableMultiSelect = class ControlTableMultiSelect extends f
return this.rows;
}
get_model_value() {
let value = this._super();
let value = super.get_model_value();
return value ? value.filter(d => !d.__islocal) : value;
}
validate(value) {