diff --git a/package.json b/package.json index a06fd6a..b90b594 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stacjownik", - "version": "1.28.4", + "version": "1.28.5", "private": true, "type": "module", "scripts": { diff --git a/public/images/no-vehicle-image.png b/public/images/no-vehicle-image.png new file mode 100644 index 0000000..dfff4ee Binary files /dev/null and b/public/images/no-vehicle-image.png differ diff --git a/src/components/App/AppHeader.vue b/src/components/App/AppHeader.vue index 43940ea..0b8d75b 100644 --- a/src/components/App/AppHeader.vue +++ b/src/components/App/AppHeader.vue @@ -111,7 +111,7 @@ export default defineComponent({ isChristmas() { const date = new Date(); - return date.getUTCMonth() == 11 && date.getUTCDate() >= 24 && date.getUTCDate() <= 26; + return date.getUTCMonth() == 11 && date.getUTCDate() >= 20 && date.getUTCDate() <= 31; } } }); diff --git a/src/components/Tooltip/VehiclePreviewTooltip.vue b/src/components/Tooltip/VehiclePreviewTooltip.vue index 778248e..c70a88b 100644 --- a/src/components/Tooltip/VehiclePreviewTooltip.vue +++ b/src/components/Tooltip/VehiclePreviewTooltip.vue @@ -1,11 +1,7 @@