Expand edit form.

This commit is contained in:
James Cole
2024-01-06 17:24:54 +01:00
parent f615b9c252
commit 4c30a7bc55
8 changed files with 52 additions and 30 deletions

View File

@@ -66,12 +66,14 @@ export function parseDownloadedSplits(downloads) {
current.destination_account = {
id: download.destination_id,
name: download.destination_name,
type: download.destination_type,
alpine_name: download.destination_name,
};
current.source_account = {
id: download.source_id,
name: download.source_name,
type: download.source_type,
alpine_name: download.source_name,
};
@@ -87,10 +89,11 @@ export function parseDownloadedSplits(downloads) {
// longitude: null
// piggy_bank_id: null
// zoomLevel: null
console.log('download:');
console.log(download);
console.log('current:');
console.log(current);
// console.log('download:');
// console.log(download);
// console.log('current:');
// console.log(current);
console.log(current.tags);
returnArray.push(current);
}
}