Skip to content

Commit

Permalink
[UPDATED]-Added label to csv save name.
Browse files Browse the repository at this point in the history
  • Loading branch information
ndasanayaka committed Jan 11, 2024
1 parent 7f10507 commit fb6a887
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/views/Deconvolution.vue
Original file line number Diff line number Diff line change
Expand Up @@ -710,15 +710,15 @@
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)
Vue.notify({
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!'
});
}
Expand All @@ -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))
}
Expand Down

0 comments on commit fb6a887

Please sign in to comment.