diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-11-10 07:11:47 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-11-10 07:11:47 +0800 |
commit | 7460f2796a2a549eaed15051009e35229fb1280f (patch) | |
tree | ea8420cdc56e719458afd4fdb7c4786bf1093054 /packages/instant/src/components/standard_panel_content.tsx | |
parent | 7249cc7b495f370f7ec5672ca36456dd4b6779de (diff) | |
download | dexon-sol-tools-7460f2796a2a549eaed15051009e35229fb1280f.tar.gz dexon-sol-tools-7460f2796a2a549eaed15051009e35229fb1280f.tar.zst dexon-sol-tools-7460f2796a2a549eaed15051009e35229fb1280f.zip |
feat: add more info section to the metamask panel
Diffstat (limited to 'packages/instant/src/components/standard_panel_content.tsx')
-rw-r--r-- | packages/instant/src/components/standard_panel_content.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/instant/src/components/standard_panel_content.tsx b/packages/instant/src/components/standard_panel_content.tsx index da851b232..fca5383ea 100644 --- a/packages/instant/src/components/standard_panel_content.tsx +++ b/packages/instant/src/components/standard_panel_content.tsx @@ -43,14 +43,14 @@ export const StandardPanelContent: React.StatelessComponent<StandardPanelContent </Container> <Container marginBottom={spacingBetweenPx}> {moreInfoSettings && ( - <a href={moreInfoSettings.href}> + <a href={moreInfoSettings.href} target="_blank"> <Text center={true} fontSize="13px" textDecorationLine="underline" fontColor={ColorOption.lightGrey} > - {moreInfoSettings.text}> + {moreInfoSettings.text} </Text> </a> )} |