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:
brian-harris
2021-10-15 15:15:52 -07:00
committed by GitHub
parent 59b43d8c67
commit 2e677dbda6
5 changed files with 195 additions and 90 deletions

View File

@@ -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 {