chore: removed obsolete console logs

This commit is contained in:
2024-09-18 15:57:45 +02:00
parent 3daf800a89
commit c8ec28292b
2 changed files with 0 additions and 5 deletions
@@ -91,10 +91,6 @@ export default defineComponent({
deep: true, deep: true,
handler() { handler() {
this.extraInfoIndexes.length = 0; this.extraInfoIndexes.length = 0;
this.$nextTick(() => {
console.log(this.$el.querySelector('ul'));
});
} }
} }
}, },
@@ -80,7 +80,6 @@ export default defineComponent({
const x = this.vehicleData?.group.cargoTypes?.find( const x = this.vehicleData?.group.cargoTypes?.find(
(c) => c.id == this.tooltipStore.content.split(':')[1] (c) => c.id == this.tooltipStore.content.split(':')[1]
); );
console.log(this.vehicleData, x);
return x; return x;
} }