Skip to content

Commit

Permalink
Fix .dat success action #29;
Browse files Browse the repository at this point in the history
  • Loading branch information
geofranzi committed Jan 21, 2025
1 parent 5c221c5 commit 1a95da1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/routes/water_budget/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,7 @@
if (!folder_data[fc_index]['fileinfo']) {
folder_data[fc_index]['fileinfo'] = {};
}
folder_data[fc_index]['fileinfo']['tif_cached'] = false;
folder_data[fc_index]['fileinfo']['tif_convertable'] = false;
folder_data[fc_index]['fileinfo']['dat_exists'] = false;
folder_data = [...folder_data];
var err_msg = await res.text();
Expand All @@ -149,7 +148,7 @@
if (!folder_data[fc_index]['fileinfo']) {
folder_data[fc_index]['fileinfo'] = {};
}
folder_data[fc_index]['fileinfo']['tif_cached'] = true;
folder_data[fc_index]['fileinfo']['dat_exists'] = true;
folder_data = [...folder_data];
}
Expand Down

0 comments on commit 1a95da1

Please sign in to comment.