mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-17 16:37:43 +00:00
feat(weekPlanner): make super basic add task work for planner
This commit is contained in:
parent
6c24d0250f
commit
666cbb5dc4
7 changed files with 93 additions and 7 deletions
|
|
@ -0,0 +1,17 @@
|
|||
<div
|
||||
style="text-align: center"
|
||||
*ngIf="!isShowAddTask"
|
||||
(click)="isShowAddTask = true"
|
||||
>
|
||||
<button mat-button>
|
||||
<mat-icon>add</mat-icon>
|
||||
Add new
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<add-task-bar
|
||||
*ngIf="isShowAddTask"
|
||||
(blurred)="isShowAddTask = false"
|
||||
(done)="isShowAddTask = false"
|
||||
[planForDay]="planForDay"
|
||||
></add-task-bar>
|
||||
Loading…
Add table
Add a link
Reference in a new issue