mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-02 09:35:40 -05:00
Add more options to chart viewer (#1307)
* fixing up chart viewer * formatting * everything is working * removed unnecessary code * removed unneeded code
This commit is contained in:
@@ -31,6 +31,7 @@ export interface IInputOptions extends IInputBoxStyles {
|
||||
|
||||
// {{SQL CARBON EDIT}} Candidate for addition to vscode
|
||||
min?: string;
|
||||
max?: string;
|
||||
}
|
||||
|
||||
export interface IInputBoxStyles {
|
||||
@@ -168,6 +169,11 @@ export class InputBox extends Widget {
|
||||
this.input.min = this.options.min;
|
||||
}
|
||||
|
||||
// {{SQL CARBON EDIT}} Canidate for addition to vscode
|
||||
if (this.options.max) {
|
||||
this.input.max = this.options.max;
|
||||
}
|
||||
|
||||
if (this.ariaLabel) {
|
||||
this.input.setAttribute('aria-label', this.ariaLabel);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user