Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rsiminel authored May 28, 2024
1 parent c67fa93 commit e528e16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manager2/src/app/project/project.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export class ProjectComponent implements OnInit {
return;
}
if (this.new_project.description.length < 30) {
this.request_err_msg = 'Project description length should at least be 30 char';
this.request_err_msg = 'Project description should be at least 30 characters long';
return;
}
const project_to_send = { ...this.new_project, expire: new Date(this.new_project.expire).getTime()}
Expand Down

0 comments on commit e528e16

Please sign in to comment.