From 3ba3223cf9f7e69ecf714b220aeb5f0d211a791a Mon Sep 17 00:00:00 2001 From: xusongfu Date: Mon, 9 Aug 2021 10:09:00 +0800 Subject: [PATCH] fix: Fix download file name Add name in action log to fix empty download file name Change-Id: I570a2294c57323de9ee8ad345e5ae3ad76592746 --- .../compute/containers/Instance/Detail/ActionLog/index.jsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pages/compute/containers/Instance/Detail/ActionLog/index.jsx b/src/pages/compute/containers/Instance/Detail/ActionLog/index.jsx index d9759731..4c7b5b77 100644 --- a/src/pages/compute/containers/Instance/Detail/ActionLog/index.jsx +++ b/src/pages/compute/containers/Instance/Detail/ActionLog/index.jsx @@ -10,6 +10,10 @@ export default class ActionLog extends Base { this.store = globalActionLogStore; } + get name() { + return t('Action Log'); + } + get rowKey() { return 'request_id'; }