summaryrefslogtreecommitdiffstats
path: root/web/react/components/signup_team.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <Unknowngi@live.com>2015-11-04 00:50:56 +0500
committerAsaad Mahmood <Unknowngi@live.com>2015-11-04 18:07:23 +0500
commit25e6e9aca7be87541bfc396f2c53e3ed316e834d (patch)
treed390ea0020871332fe087bb013fb19bd9f9b23b2 /web/react/components/signup_team.jsx
parentd9c7fce07744f38715e96f34bf7eaf75d1bcfb00 (diff)
downloadchat-25e6e9aca7be87541bfc396f2c53e3ed316e834d.tar.gz
chat-25e6e9aca7be87541bfc396f2c53e3ed316e834d.tar.bz2
chat-25e6e9aca7be87541bfc396f2c53e3ed316e834d.zip
UI Improvements for multiple tickets
Diffstat (limited to 'web/react/components/signup_team.jsx')
-rw-r--r--web/react/components/signup_team.jsx15
1 files changed, 7 insertions, 8 deletions
diff --git a/web/react/components/signup_team.jsx b/web/react/components/signup_team.jsx
index 37760a2a2..516765a3f 100644
--- a/web/react/components/signup_team.jsx
+++ b/web/react/components/signup_team.jsx
@@ -46,7 +46,7 @@ export default class TeamSignUp extends React.Component {
} else {
teamListing = (
<div>
- <h3>{'Choose a Team'}</h3>
+ <h4>{'Choose a Team'}</h4>
<div className='signup-team-all'>
{
this.props.teams.map((team) => {
@@ -58,19 +58,18 @@ export default class TeamSignUp extends React.Component {
<a
href={'/' + team.name}
>
- <div className='signup-team-dir__group'>
- <span className='signup-team-dir__name'>{team.display_name}</span>
- <span
- className='glyphicon glyphicon-menu-right right signup-team-dir__arrow'
- aria-hidden='true'
- />
- </div>
+ <span className='signup-team-dir__name'>{team.display_name}</span>
+ <span
+ className='glyphicon glyphicon-menu-right right signup-team-dir__arrow'
+ aria-hidden='true'
+ />
</a>
</div>
);
})
}
</div>
+ <h4>{'Or Create a Team'}</h4>
</div>
);
}