Et2SelectEmail: Change multiple default to false to match other selects

This commit is contained in:
nathan 2022-09-22 08:58:52 -06:00
parent be3b38d516
commit 8da8c14a00

View File

@ -71,7 +71,7 @@ export class Et2SelectEmail extends Et2Select
this.editModeEnabled = true;
this.allowDragAndDrop = false;
this.includeLists = false;
this.multiple = true;
this.multiple = false;
this.fullEmail = false;
this.defaultValidators.push(new IsEmail());
}