uplink fixes

This commit is contained in:
actioninja
2019-11-21 00:55:31 -08:00
parent 8986dffe30
commit 2d9808e7ba
3 changed files with 7 additions and 6 deletions

View File

@@ -131,10 +131,10 @@ export class Uplink extends Component {
) : (
<Tabs vertical>
{categories.map(category => {
const {
items = [],
name,
} = category;
const { name, items } = category;
if (items === null) {
return;
}
return (
<Tabs.Tab
key={name}

File diff suppressed because one or more lines are too long

View File

@@ -318,6 +318,7 @@ const ROUTES = {
uplink: {
component: () => Uplink,
scrollable: true,
theme: 'syndicate',
},
vault_controller: {
component: () => VaultController,