-
Notifications
You must be signed in to change notification settings - Fork 165
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
feat(page: detail): can add tags to item #8
base: master
Are you sure you want to change the base?
Conversation
ok i'll check it @wendzhue |
I'm busy recentlt, and check it on holiday online demo https://tirelyl.github.io/today-ng-steps/ |
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.
Your code is nice but you should take user experience into consideration. We need tag not just to put them there, but to search todos by tags. Feel free to modify the left-control's outlook if you feel necessary.
@@ -11,6 +11,28 @@ | |||
</div> | |||
<label nz-checkbox (click)="$event.stopPropagation()" [(ngModel)]="currentTodo.completedFlag"></label> | |||
<span>标记完成</span> | |||
<nz-divider nzText="标签" nzOrientation="left"></nz-divider> |
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.
Tag has no superior priority to title and date. It should be placed after date and before description.
*ngIf="!addTagInputVisible" | ||
class="editable-tag" | ||
(click)="showAddTagInput()"> | ||
<i class="anticon anticon-plus"></i> New Tag |
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.
Use Chinese for now. i18n would be introduced later.
.. |
No description provided.