Skip to content

Commit 9b10176

Browse files
committed
fix(validation): align project title limit with backend constraints
1 parent 135390e commit 9b10176

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/features/projects/components/project-create/project-create.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export class ProjectCreateComponent implements OnInit, OnDestroy {
2727
isLoading = false;
2828
isPreviewMode = false;
2929
previewDetail: string | null = null;
30-
readonly maxNameLength = 120;
30+
readonly maxNameLength = 100;
3131
readonly maxDescriptionLength = 1200;
3232
readonly readinessSteps: MenuItem[] = [
3333
{ label: 'Define Name' },

0 commit comments

Comments
 (0)