aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/top_bar
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2018-04-24 02:57:55 +0800
committerBrandon Millman <brandon.millman@gmail.com>2018-04-24 05:27:11 +0800
commitcc471dd127b3b2b30ebe32452f9dd03778845e7c (patch)
tree087d42d8fa88c844c671fd795ab632280d7e3115 /packages/website/ts/components/top_bar
parentd08bfbf7054d0d98680daab3d1fdc0ac878dcc16 (diff)
downloaddexon-0x-contracts-cc471dd127b3b2b30ebe32452f9dd03778845e7c.tar
dexon-0x-contracts-cc471dd127b3b2b30ebe32452f9dd03778845e7c.tar.gz
dexon-0x-contracts-cc471dd127b3b2b30ebe32452f9dd03778845e7c.tar.bz2
dexon-0x-contracts-cc471dd127b3b2b30ebe32452f9dd03778845e7c.tar.lz
dexon-0x-contracts-cc471dd127b3b2b30ebe32452f9dd03778845e7c.tar.xz
dexon-0x-contracts-cc471dd127b3b2b30ebe32452f9dd03778845e7c.tar.zst
dexon-0x-contracts-cc471dd127b3b2b30ebe32452f9dd03778845e7c.zip
Rename Portal and PortalMenu components to LegacyPortal and LegacyPortalMenu
Diffstat (limited to 'packages/website/ts/components/top_bar')
-rw-r--r--packages/website/ts/components/top_bar/top_bar.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/website/ts/components/top_bar/top_bar.tsx b/packages/website/ts/components/top_bar/top_bar.tsx
index 13351dcdc..0c32f4c62 100644
--- a/packages/website/ts/components/top_bar/top_bar.tsx
+++ b/packages/website/ts/components/top_bar/top_bar.tsx
@@ -8,7 +8,7 @@ import * as React from 'react';
import { Link } from 'react-router-dom';
import ReactTooltip = require('react-tooltip');
import { Blockchain } from 'ts/blockchain';
-import { PortalMenu } from 'ts/components/portal_menu';
+import { LegacyPortalMenu } from 'ts/components/legacy_portal/legacy_portal_menu';
import { SidebarHeader } from 'ts/components/sidebar_header';
import { ProviderDisplay } from 'ts/components/top_bar/provider_display';
import { TopBarMenuItem } from 'ts/components/top_bar/top_bar_menu_item';
@@ -431,7 +431,7 @@ export class TopBar extends React.Component<TopBarProps, TopBarState> {
<div className="pl1 py1" style={{ backgroundColor: colors.lightGrey }}>
{this.props.translate.get(Key.PortalDApp, Deco.CapWords)}
</div>
- <PortalMenu menuItemStyle={{ color: 'black' }} onClick={this._onMenuButtonClick.bind(this)} />
+ <LegacyPortalMenu menuItemStyle={{ color: 'black' }} onClick={this._onMenuButtonClick.bind(this)} />
</div>
);
}