Node 22 and year fix

This commit is contained in:
Krzysztof Płaczek
2026-01-01 15:25:55 +01:00
parent dd1d01ba1e
commit 081812d678
4 changed files with 13 additions and 911 deletions

View File

@@ -1,4 +1,4 @@
FROM node:20 FROM node:22
# Set working directory inside container # Set working directory inside container
WORKDIR /app WORKDIR /app

View File

@@ -26,3 +26,9 @@ To download bookmeter json files there is a PHP script
```bash ```bash
php download_posts.ph php download_posts.ph
``` ```
To compile production version execute this command:
```bash
bin/build
```

View File

@@ -132,17 +132,17 @@
</button> </button>
</div> </div>
<div class="d-block max-w-xs mr-2"> <div class="d-block max-w-xs mr-2">
<label for="year-2025" class="p-2.5 inline-block"> <label for="year-2026" class="p-2.5 inline-block">
<input @input.debounce="updateFilter" x-model="year" type="checkbox" id="year-2026" value="2026"/>2026 <input @input.debounce="updateFilter" x-model="year" type="checkbox" id="year-2026" value="2026"/> 2026
</label> </label>
<label for="year-2025" class="p-2.5 inline-block"> <label for="year-2025" class="p-2.5 inline-block">
<input @input.debounce="updateFilter" x-model="year" type="checkbox" id="year-2025" value="2025"/>2025 <input @input.debounce="updateFilter" x-model="year" type="checkbox" id="year-2025" value="2025"/> 2025
</label> </label>
<label for="year-2024" class="p-2.5 inline-block"> <label for="year-2024" class="p-2.5 inline-block">
<input @input.debounce="updateFilter" x-model="year" type="checkbox" id="year-2024" value="2024"/>2024 <input @input.debounce="updateFilter" x-model="year" type="checkbox" id="year-2024" value="2024"/> 2024
</label> </label>
<label for="year-2023" class="p-2.5 inline-block"> <label for="year-2023" class="p-2.5 inline-block">
<input @input.debounce="updateFilter" x-model="year" type="checkbox" id="year-2023" value="2023"/>2023 <input @input.debounce="updateFilter" x-model="year" type="checkbox" id="year-2023" value="2023"/> 2023
</label> </label>
</div> </div>

File diff suppressed because one or more lines are too long