Add simple notebook smoke test (#12898)

* add simple notebook smoke test

* add id for notebook dropdown elements
This commit is contained in:
Lucy Zhang
2020-10-14 05:58:32 -07:00
committed by GitHub
parent a0c03784f2
commit 7bc26cc493
6 changed files with 131 additions and 7 deletions

View File

@@ -350,6 +350,7 @@ export class SelectBox extends vsSelectBox {
super.render(selectContainer);
this.selectElement.classList.add('action-item-label');
this.selectElement.id = selectOptions.id;
}
else {
super.render(container);
@@ -364,4 +365,5 @@ export class SelectBox extends vsSelectBox {
export interface ISelectBoxOptionsWithLabel extends ISelectBoxOptions {
labelText?: string;
labelOnTop?: boolean;
id?: string;
}