Skip to content

Commit

Permalink
Removed .tar.xz extension from dumps (#410)
Browse files Browse the repository at this point in the history
- After download of entry, the extension for saving the entry was .tar.xz.
  It is removed in this fix.
- BQ defect: https://w3.rchland.ibm.com/projects/bestquest/?defect=SW557166.

Signed-off-by: Nikhil Ashoka <[email protected]>
  • Loading branch information
Nikhil-Ashoka authored and rfrandse committed Nov 16, 2022
1 parent 68f337d commit b0e0e63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/Logs/Dumps/Dumps.vue
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ export default {
}
},
exportFileName(row) {
let filename = row.item.dumpType + '_' + row.item.id + '.tar.xz';
let filename = row.item.dumpType + '_' + row.item.id;
filename = filename.replace(RegExp(' ', 'g'), '_');
return filename;
},
Expand Down

0 comments on commit b0e0e63

Please sign in to comment.