More Tasks page fixes (#9475)

* fix datepicker not closing when clicking outside of it, fixes #9346

* fixes #9441
This commit is contained in:
Matteo Pagliazzi
2017-11-15 17:06:32 +01:00
committed by GitHub
parent cb612d99d7
commit ab974675b9
4 changed files with 292 additions and 272 deletions

View File

@@ -67,7 +67,7 @@
.option-item-label(v-once) {{ $t('hard') }}
.option(v-if="task.type === 'todo'")
label(v-once) {{ $t('dueDate') }}
datepicker(
datepicker.d-inline-block(
v-model="task.date",
:clearButton='true',
clearButtonIcon='category-select',
@@ -78,7 +78,7 @@
)
.option(v-if="task.type === 'daily'")
label(v-once) {{ $t('startDate') }}
datepicker(
datepicker.d-inline-block(
v-model="task.startDate",
:clearButton='false',
:todayButton='true',