fix(frontend): mobx migrations display fix
This commit is contained in:
parent
b9b68487a0
commit
bc249730f0
1 changed files with 2 additions and 2 deletions
|
|
@ -26,7 +26,7 @@ import stl from './storage.css';
|
|||
function getActionsName(type) {
|
||||
switch(type) {
|
||||
case STORAGE_TYPES.MOBX:
|
||||
return "EVENTS";
|
||||
return "MUTATIONS";
|
||||
case STORAGE_TYPES.VUEX:
|
||||
return "MUTATIONS";
|
||||
default:
|
||||
|
|
@ -141,7 +141,7 @@ export default class Storage extends React.PureComponent {
|
|||
break;
|
||||
case STORAGE_TYPES.MOBX:
|
||||
src = item.payload;
|
||||
name = `@${item.type} ${src && src.name}`;
|
||||
name = `@${item.type} ${src && src.type}`;
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue