Fixed default value for radio options builder if using resourceType displayName (#20070)

Co-authored-by: Candice Ye <canye@microsoft.com>
This commit is contained in:
Candice Ye
2022-07-19 10:29:19 -07:00
committed by GitHub
parent 102f3794f2
commit 89dbcb6638
2 changed files with 10 additions and 3 deletions

View File

@@ -285,7 +285,7 @@ export interface IOptionsSource {
export interface OptionsInfo {
values?: string[] | azdata.CategoryValue[],
source?: IOptionsSource,
defaultValue: string,
defaultValue: string | ResourceTypeOptionValue,
optionsType?: OptionsType
}