From a87f3e75a6a66937fd27047c0065a9aa9846abee Mon Sep 17 00:00:00 2001 From: Yoshie Muranaka Date: Mon, 4 Jan 2021 14:08:04 -0800 Subject: Add ability to downlad dump - Adds download row action in bmc dumps table - Adds new rowAction download type to support tag with download attribute Signed-off-by: Yoshie Muranaka Change-Id: I97fd70e6a6783d4336ca1a8486cf1cd3062ebb5d --- src/env/components/Dumps/Dumps.vue | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/env/components') diff --git a/src/env/components/Dumps/Dumps.vue b/src/env/components/Dumps/Dumps.vue index 3bf5579a..8181c5ba 100644 --- a/src/env/components/Dumps/Dumps.vue +++ b/src/env/components/Dumps/Dumps.vue @@ -91,9 +91,12 @@ :key="index" :value="action.value" :title="action.title" + :download-location="row.item.data" + :export-name="`${row.item.dumpType} ${row.item.id}`" @click-table-action="onTableRowAction($event, row.item)" > @@ -107,6 +110,7 @@