summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGunnar Mills <gmills@us.ibm.com>2021-12-01 04:33:42 +0300
committerDixsie Wolmers <dixsiew@gmail.com>2021-12-01 23:15:21 +0300
commitcc79a53192de73457cb4c8c3350d896d952bb106 (patch)
tree39d00bb8192552fe53496751b6fea98209610b77
parentb98a133e39e15be179779ae9b7745bbc093b17a4 (diff)
downloadwebui-vue-cc79a53192de73457cb4c8c3350d896d952bb106.tar.xz
Correct Dump file extension
BMC Dump which is implemented in phosphor-debug-collector uses ".tar.xz" https://github.com/openbmc/phosphor-debug-collector/search?q=.tar.xz The Dump page was incorrectly exporting as tar.gz. Fix this. Change-Id: Id0b64a6e0ae92254484170a77e28a01f78c8d368 Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
-rw-r--r--src/views/Logs/Dumps/Dumps.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/views/Logs/Dumps/Dumps.vue b/src/views/Logs/Dumps/Dumps.vue
index 00bbf7f8..f4f64515 100644
--- a/src/views/Logs/Dumps/Dumps.vue
+++ b/src/views/Logs/Dumps/Dumps.vue
@@ -363,7 +363,7 @@ export default {
}
},
exportFileName(row) {
- let filename = row.item.dumpType + '_' + row.item.id + '.tar.gz';
+ let filename = row.item.dumpType + '_' + row.item.id + '.tar.xz';
filename = filename.replace(RegExp(' ', 'g'), '_');
return filename;
},