mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-22 01:25:38 -05:00
Add required property to checkbox and set it for deployment dialog (#9392)
This commit is contained in:
@@ -100,6 +100,14 @@ export class Checkbox extends Widget {
|
||||
return this._el.getAttribute('aria-label');
|
||||
}
|
||||
|
||||
public set required(val: boolean) {
|
||||
this._el.required = val;
|
||||
}
|
||||
|
||||
public get required(): boolean {
|
||||
return this._el.required;
|
||||
}
|
||||
|
||||
public focus(): void {
|
||||
this._el.focus();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user