mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
feat(schedule): make build work again
This commit is contained in:
parent
373be0cf49
commit
a45cd07872
2 changed files with 3 additions and 2 deletions
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"sourceMap": true,
|
||||
"resolveJsonModule": false,
|
||||
"declaration": false,
|
||||
|
|
|
|||
|
|
@ -73,14 +73,14 @@
|
|||
<div
|
||||
class="col"
|
||||
[attr.data-day]="day"
|
||||
style="grid-column: {{ $index + 2 }}; grid-row: 1 / span {{($index === 0 ? currentTimeRow :workStartEnd.workStartRow) -1}}"
|
||||
style="grid-column: {{ $index + 2 }}; grid-row: 1 / span {{($index === 0 ? currentTimeRow :endOfDayColRowStart) -1}}"
|
||||
>
|
||||
<div class="drop-label">Plan at start of day</div>
|
||||
</div>
|
||||
<div
|
||||
class="col end-of-day"
|
||||
[attr.data-day]="day"
|
||||
style="grid-column: {{ $index + 2 }}; grid-row: {{($index === 0 ? currentTimeRow :workStartEnd.workStartRow)}} / span {{totalRows - ($index === 0 ? currentTimeRow :workStartEnd.workStartRow)}}"
|
||||
style="grid-column: {{ $index + 2 }}; grid-row: {{($index === 0 ? currentTimeRow :endOfDayColRowStart)}} / span {{totalRows - ($index === 0 ? currentTimeRow :endOfDayColRowStart)}}"
|
||||
>
|
||||
<div class="drop-label">Plan at end of day</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue