From 3c64693275ec5063e59ca7849fd8c15c6c4493ed Mon Sep 17 00:00:00 2001 From: proddy Date: Thu, 11 Jul 2024 11:03:32 +0200 Subject: [PATCH] fixes #1859 --- interface/src/project/validators.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/src/project/validators.ts b/interface/src/project/validators.ts index b3420c04f..46226deba 100644 --- a/interface/src/project/validators.ts +++ b/interface/src/project/validators.ts @@ -392,8 +392,8 @@ export const temperatureSensorItemValidation = () => n: [ { type: 'string', - pattern: /^[a-zA-Z0-9_\\.]{0,15}$/, - message: "Must be <15 characters: alpha numeric, '_' or '.'" + pattern: /^[a-zA-Z0-9_\\.]{0,17}$/, + message: "Must be <18 characters: alpha numeric, '_' or '.'" } ] });