Compare commits

..

1 Commits

Author SHA1 Message Date
Henry
f85bbc4584 fix: increase maximum length for boardSlug from 24 to 60 characters 2026-03-23 16:29:58 +00:00

View File

@@ -39,7 +39,7 @@ export function LabelForm({
labelPublicId: entityId,
},
{
enabled: !!isEdit && entityId.length >= 12,
enabled: isEdit && !!entityId,
},
);