From fb6a887d2471a1eaa173e03e863ed2f6691d38d1 Mon Sep 17 00:00:00 2001 From: Nishanthi Dasanayaka Date: Thu, 11 Jan 2024 15:16:58 +1000 Subject: [PATCH] [UPDATED]-Added label to csv save name. --- src/views/Deconvolution.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/Deconvolution.vue b/src/views/Deconvolution.vue index fa3fd5f..a990cca 100644 --- a/src/views/Deconvolution.vue +++ b/src/views/Deconvolution.vue @@ -710,7 +710,7 @@ this.csvloading = true const response= await ConfigurationAPI.execute_metedata_script(btoa(metadataResult.file), this.selectedtag, false, true) this.csvloading = false - this.csvlocation = this.workingItem.setting.outputPath+"/"+file_name+".csv" + this.csvlocation = this.workingItem.setting.outputPath+"/"+file_name+"_metadata.csv" console.log(this.workingItem.setting.outputPath+"/"+file_name+".csv") console.log(response) //if(response) @@ -718,7 +718,7 @@ group: 'sysnotif', type: 'info', title: 'Save Metadata to CSV File', - text: this.workingItem.setting.outputPath+"/"+file_name+".csv" + ' saved!' + text: this.workingItem.setting.outputPath+"/"+file_name+"_metadata.csv" + ' saved!' }); } @@ -727,7 +727,7 @@ group: 'sysnotif', type: 'error', title: 'Save Metadata to CSV File', - text: 'Fail to save ' + this.workingItem.setting.outputPath+"/"+file_name+".csv" + ' .Error:' + String(err) + text: 'Fail to save ' + this.workingItem.setting.outputPath+"/"+file_name+"_metadata.csv" + ' .Error:' + String(err) }); console.log(String(err)) }