feat: #8612 changed shelving to VnTable & created e2e tests #1432

Merged
provira merged 28 commits from 8612-shelvinge2e into dev 2025-03-05 07:42:35 +00:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit bd990542dc - Show all commits

View File

@ -65,7 +65,7 @@ const entriesTableColumns = computed(() => [
]);
function downloadCSV(rows) {
const headers = ['id', 'itemFk', 'name', 'stickers', 'packing', 'comment'];
const headers = ['id', 'itemFk', 'name', 'stickers', 'packing', 'grouping', 'comment'];
const csvRows = rows.map((row) => {
const buy = row;
@ -77,6 +77,7 @@ function downloadCSV(rows) {
item.name || '',
buy.stickers,
buy.packing,
buy.grouping,
item.comment || '',
].join(',');
});