chore: minor thumbnail loading changes

This commit is contained in:
2024-09-18 15:26:14 +02:00
parent fac8fced3e
commit 69d9be0bb3
3 changed files with 29 additions and 34 deletions
@@ -77,9 +77,12 @@ export default defineComponent({
},
vehicleCargo() {
return this.vehicleData?.group.cargoTypes?.find(
const x = this.vehicleData?.group.cargoTypes?.find(
(c) => c.id == this.tooltipStore.content.split(':')[1]
);
console.log(this.vehicleData, x);
return x;
}
}
});