ff39ba5a15
Fixes #4943 ## How was it tested? Local (front + /metadata) Unit tests for utils --------- Co-authored-by: Weiko <corentin@twenty.com>
5 lines
159 B
TypeScript
5 lines
159 B
TypeScript
const metadataLabelValidationPattern = /^[^0-9].*$/;
|
|
|
|
export const validateMetadataLabel = (value: string) =>
|
|
!!value.match(metadataLabelValidationPattern);
|