fix(select): get multiple value selects working to set selected options

also adds e2e test for multi value
This commit is contained in:
Brandy Carney
2017-12-14 18:32:37 -05:00
parent c627caba0f
commit a4dfb7ae4f
6 changed files with 244 additions and 30 deletions

View File

@ -2502,7 +2502,7 @@ declare global {
multiple?: boolean;
interface?: string;
interfaceOptions?: any;
value?: string|string[];
value?: string | string[];
}
}
}