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
parent
commit
64df0e16ff
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      ui-ngx/src/app/modules/home/components/widget/lib/gateway/gateway-widget.models.ts

2
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',

Loading…
Cancel
Save