diff --git a/package.json b/package.json index 462c517..181d5d7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pojazdownik", - "version": "1.3.0", + "version": "1.3.1", "private": true, "scripts": { "dev": "vite", diff --git a/src/components/sections/InputsSection.vue b/src/components/sections/InputsSection.vue index f6b9141..7aac727 100644 --- a/src/components/sections/InputsSection.vue +++ b/src/components/sections/InputsSection.vue @@ -25,7 +25,7 @@ > Wybierz pojazd trakcyjny - {{ loco.type }} + {{ loco.type }}* @@ -53,7 +53,7 @@ Wybierz wagon - {{ car.type }} + {{ car.type }}* diff --git a/src/components/sections/TrainImageSection.vue b/src/components/sections/TrainImageSection.vue index 9b3b118..ed3784e 100644 --- a/src/components/sections/TrainImageSection.vue +++ b/src/components/sections/TrainImageSection.vue @@ -1,7 +1,7 @@ - + ŁADOWANIE OBRAZU... @@ -44,6 +44,8 @@ : 'Typ konstrukcji: ' + store.chosenVehicle.constructionType }} + + * TYLKO DLA SPONSORÓW diff --git a/src/components/tabs/StockListTab.vue b/src/components/tabs/StockListTab.vue index d01cc96..f4f42c4 100644 --- a/src/components/tabs/StockListTab.vue +++ b/src/components/tabs/StockListTab.vue @@ -127,7 +127,7 @@ {{ i + 1 }}. - + {{ stock.isLoco ? stock.type : getCarSpecFromType(stock.type) }} @@ -525,6 +525,10 @@ li > .stock-info { margin: 0.5em 0; } +.supporter { + color: salmon; +} + .stock-info { &__no, &__type { diff --git a/src/components/utils/StockThumbnails.vue b/src/components/utils/StockThumbnails.vue index 00d0b36..90e2935 100644 --- a/src/components/utils/StockThumbnails.vue +++ b/src/components/utils/StockThumbnails.vue @@ -9,7 +9,7 @@ @dragover="allowDrop" > - + {{ stock.type }} @@ -120,5 +120,9 @@ const allowDrop = (e: DragEvent) => { max-height: 60px; } } + +.supporter { + color: salmon; +} diff --git a/src/mixins/stockMixin.ts b/src/mixins/stockMixin.ts index 6f1a633..d8ac80c 100644 --- a/src/mixins/stockMixin.ts +++ b/src/mixins/stockMixin.ts @@ -29,7 +29,7 @@ export default defineComponent({ count, imgSrc: vehicle.imageSrc, useType: isLoco ? vehicle.power : vehicle.useType, - supportersOnly: false, + supportersOnly: vehicle.supportersOnly, }; },