chore(stock): added stock vehicle thumbnails size variable; changed scenery timetable stock previews to 45

This commit is contained in:
2026-04-18 22:38:58 +02:00
parent 2b16213531
commit 88b02b20a5
3 changed files with 8 additions and 5 deletions
+3 -1
View File
@@ -8,6 +8,7 @@
:images="images"
:image-fallbacks="imagesFallbacks"
:show-previews="showPreviews"
:thumbnail-size="thumbnailSize"
/>
</li>
</ul>
@@ -25,7 +26,8 @@ export default defineComponent({
props: {
trainStockList: { type: Array as PropType<string[]>, required: true },
tractionOnly: { type: Boolean, required: false },
showPreviews: { type: Boolean }
showPreviews: { type: Boolean },
thumbnailSize: { type: Number }
},
data() {