-
Notifications
You must be signed in to change notification settings - Fork 0
Board 001. create board component #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| @@ -0,0 +1,5 @@ | |||
| .board{ | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
space after selector
| <small class="notification" *ngIf="validateForm.get('nickname')?.errors?.['required'] && validateForm.get('nickname')?.touched"> | ||
| {{'AUTH.REQUIRED_NAME' | translate}} | ||
| </small> | ||
| <small class="notification" *ngIf="validateForm.get('nickname')?.getError('minlength')">{{'AUTH.MINLENGTH_NAME' | translate}}</small> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'minlength' will be better reading with camelCase 'minLength'
| <a routerLink="/workspace/boards">{{'WORKSPACE.CREATE_BOARD' | translate}}</a> | ||
| <div> | ||
| <a routerLink="/workspace/boards"> | ||
| <h2>NAME</h2> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix indentation
| @@ -1,0 +1,14 @@ | |||
| h1{ | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
space after selector
| align-items: center; | ||
| } | ||
|
|
||
| .boards{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
space after selector
| <a routerLink="/workspace/boards"> | ||
| <h2>NAME</h2> | ||
| </a> | ||
| <button (click)="deleteBoard()">DELETE</button> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| translate
| <a routerLink="/workspace/boards">{{'WORKSPACE.CREATE_BOARD' | translate}}</a> | ||
| <div> | ||
| <a routerLink="/workspace/boards"> | ||
| <h2>NAME</h2> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Name should be translated depandes on language
No description provided.