mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-17 01:25:36 -05:00
add assessment error handling and bypass option (#17369)
* add assessment error handling and bypass option * add desriptive text and results warnings
This commit is contained in:
@@ -163,7 +163,11 @@ export function findDropDownItemIndex(dropDown: DropDownComponent, value: string
|
||||
}
|
||||
|
||||
export function hashString(value: string): string {
|
||||
return crypto.createHash('sha512').update(value).digest('hex');
|
||||
if (value?.length > 0) {
|
||||
return crypto.createHash('sha512').update(value).digest('hex');
|
||||
}
|
||||
|
||||
return '';
|
||||
}
|
||||
|
||||
export function debounce(delay: number): Function {
|
||||
|
||||
Reference in New Issue
Block a user