-
Notifications
You must be signed in to change notification settings - Fork 0
Add columns and drag-and-drop #9
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
package.json
Outdated
| "typescript": "~4.7.2" | ||
| } | ||
| } | ||
| } |
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.
add empty line in end of file
| @@ -1,10 +1,10 @@ | |||
| .wrapper { | |||
| width: 240px; | |||
| height: calc(100vh - 118px); | |||
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.
magic numbers. Will be better to create css constants
| cdkDrag | ||
| ></app-column> | ||
| <div class="board__create-button" [cdkDragDisabled]="true" cdkDrag> | ||
| Create new column |
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.
| language
| <div class="alert" *ngIf="inputForm.get('myInput')?.errors?.['required']">Please input title!</div> | ||
|
|
||
| <div class="column__tasks"></div> | ||
| <button class="column__button">+ Add card</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.
| language
| }) | ||
| export class ColumnComponent { | ||
| @Input() column!: Column; | ||
|
|
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.
_id attribute
| </div> | ||
| </section> | ||
|
|
||
| </section> |
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.
add empty line in end of file
No description provided.