fix: Fix download file name

Add name in action log to fix empty download file name

Change-Id: I570a2294c57323de9ee8ad345e5ae3ad76592746
This commit is contained in:
xusongfu 2021-08-09 10:09:00 +08:00
parent abcced1fb5
commit 3ba3223cf9
1 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,10 @@ export default class ActionLog extends Base {
this.store = globalActionLogStore;
}
get name() {
return t('Action Log');
}
get rowKey() {
return 'request_id';
}