Browse Source
Merge pull request #11327 from vvlladd28/bug/load-platform/ios-16
Fix platform access on iOS 16.3 and lower
pull/11335/head
Andrew Shvayka
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
ui-ngx/src/app/modules/home/components/widget/lib/gateway/gateway-widget.models.ts
|
|
|
@ -19,7 +19,7 @@ import { Observable } from 'rxjs'; |
|
|
|
import { ValueTypeData } from '@shared/models/constants'; |
|
|
|
import { Validators } from '@angular/forms'; |
|
|
|
|
|
|
|
export const noLeadTrailSpacesRegex: RegExp = /^(?! )[\S\s]*(?<! )$/; |
|
|
|
export const noLeadTrailSpacesRegex = /^\S+(?: \S+)*$/; |
|
|
|
|
|
|
|
export enum StorageTypes { |
|
|
|
MEMORY = 'memory', |
|
|
|
|