UI: Fixed load platform in iOs 16 or later (fixed noLeadTrailSpacesRegex)

This commit is contained in:
Vladyslav_Prykhodko 2024-07-31 14:46:20 +03:00
parent 15cb12e48f
commit 87415c0df6

View File

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