chore(generator): removed additional cargo for intermodals; added new vehicle api types

This commit is contained in:
2026-04-04 21:03:33 +02:00
parent 97ce0febec
commit a37c9916b5
7 changed files with 78 additions and 108 deletions
@@ -110,7 +110,7 @@ import { isTractionUnit } from '../../../utils/vehicleUtils';
import stockMixin from '../../../mixins/stockMixin';
import { useStockListUtils } from '../../../utils/stockListUtils';
import { getCurrentStockFileName, getStockStringOutput } from '../../../composables/file';
import { getCurrentStockFileName } from '../../../composables/file';
import {
Bookmark,
@@ -166,7 +166,7 @@ export default defineComponent({
methods: {
copyToClipboard() {
navigator.clipboard.writeText(getStockStringOutput());
navigator.clipboard.writeText(this.store.stockString);
setTimeout(() => {
alert(this.$t('stocklist.alert-copied'));
@@ -224,7 +224,7 @@ export default defineComponent({
if (!fileName) return;
const blob = new Blob([getStockStringOutput()]);
const blob = new Blob([this.store.stockString]);
const file = fileName + '.con';
var e = document.createEvent('MouseEvents'),