fix(ui): fix events tab for mobile
This commit is contained in:
parent
4b20a7970c
commit
c0d4088120
1 changed files with 2 additions and 2 deletions
|
|
@ -55,8 +55,8 @@ function PlayerBlockHeader(props: any) {
|
|||
return { label: key, value };
|
||||
});
|
||||
|
||||
const TABS = [props.tabs.EVENTS].map((tab) => ({
|
||||
text: tab,
|
||||
const TABS = Object.keys(props.tabs).map((tab) => ({
|
||||
text: props.tabs[tab],
|
||||
key: tab,
|
||||
}));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue