Merge pull request #11184 from ArtemDzhereleiko/AD/bug-fix/input-widgets-string

Fixed String input widgets
This commit is contained in:
Igor Kulikov 2024-07-22 16:52:44 +03:00 committed by GitHub
commit dbe1e3dea8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 7 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -456,6 +456,10 @@ export class UtilsService {
return isDefined(value);
}
public isDefinedAndNotNull(value: any): boolean {
return isDefinedAndNotNull(value);
}
public defaultValue(value: any, defaultValue: any): any {
if (isDefinedAndNotNull(value)) {
return value;