Skip to content

Commit b0e0e63

Browse files
Nikhil-Ashokarfrandse
authored andcommitted
Removed .tar.xz extension from dumps (#410)
- 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]>
1 parent 68f337d commit b0e0e63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/views/Logs/Dumps/Dumps.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ export default {
416416
}
417417
},
418418
exportFileName(row) {
419-
let filename = row.item.dumpType + '_' + row.item.id + '.tar.xz';
419+
let filename = row.item.dumpType + '_' + row.item.id;
420420
filename = filename.replace(RegExp(' ', 'g'), '_');
421421
return filename;
422422
},

0 commit comments

Comments
 (0)