From 9396f62df17800c55bdf33347cf038c51f5a2112 Mon Sep 17 00:00:00 2001 From: dominik-zeglen Date: Tue, 13 Oct 2020 13:31:53 +0200 Subject: [PATCH] Fix debug value --- src/components/SeoForm/SeoForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/SeoForm/SeoForm.tsx b/src/components/SeoForm/SeoForm.tsx index 0a1109f90..3825a697a 100644 --- a/src/components/SeoForm/SeoForm.tsx +++ b/src/components/SeoForm/SeoForm.tsx @@ -23,7 +23,7 @@ enum SeoField { } const SLUG_REGEX = /^[a-zA-Z0-9\-\_]+$/; -const maxSlugLength = 15; +const maxSlugLength = 255; const maxTitleLength = 70; const maxDescriptionLength = 300;