Add custom option support on Connection dialog + move Encrypt to connection dialog (#20959)

This commit is contained in:
Cheena Malhotra
2022-10-25 12:19:40 -07:00
committed by GitHub
parent 44d03085ad
commit 987aed3b92
11 changed files with 98 additions and 13 deletions

View File

@@ -147,8 +147,8 @@ export function updateOptions(options: { [optionName: string]: any }, optionsMap
}
}
export let trueInputValue: string = 'True';
export let falseInputValue: string = 'False';
export let trueInputValue: string = localize('boolean.true', 'True');
export let falseInputValue: string = localize('boolean.false', 'False');
export function findElement(container: HTMLElement, className: string): HTMLElement {
let elementBuilder = container;