feat(schedule): make build work again

This commit is contained in:
Johannes Millan 2024-08-06 15:40:55 +02:00
parent 373be0cf49
commit a45cd07872
2 changed files with 3 additions and 2 deletions

View file

@ -1,5 +1,6 @@
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"resolveJsonModule": false,
"declaration": false,

View file

@ -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>