Skip to content

Commit

Permalink
Return condition for alias
Browse files Browse the repository at this point in the history
  • Loading branch information
Nazar Usov authored and Nazar Usov committed Feb 25, 2024
1 parent 11ec8b9 commit 57bbc97
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ import { BreadcrumbItems } from '@parts/components/breadcrumbs/breadcrumbs.model
>
{{ 'ASSIGN_ALIAS.FORM_ERRORS.NAME_WRONG' | translate }}
</div>
<div *ngIf="assignForm.get('name').value.length < 6 || assignForm.get('name').value.length > 25">
<div *ngIf="assignForm.get('name').value.length <= 6 || assignForm.get('name').value.length > 25">
{{ 'ASSIGN_ALIAS.FORM_ERRORS.NAME_LENGTH' | translate }}
</div>
</div>
Expand Down

0 comments on commit 57bbc97

Please sign in to comment.