mirror of
https://github.com/ENSL/ensl_gathers.git
synced 2024-11-10 07:11:53 +00:00
Cleanup
This commit is contained in:
parent
09d11b41ce
commit
5ed772192b
1 changed files with 4 additions and 1 deletions
|
@ -1042,7 +1042,7 @@ const GatherVotingResults = React.createClass({
|
||||||
|
|
||||||
serverTable(server, primary) {
|
serverTable(server, primary) {
|
||||||
let password = server.password ? server.password : "N/A";
|
let password = server.password ? server.password : "N/A";
|
||||||
let className = primary ? "btn btn-primary max-width" : "btn btn-primary";
|
let className = primary ? "btn btn-primary max-width" : "btn btn-primary pull-right";
|
||||||
let label = primary ? `Join ${server.name}` : "Join Fallback"
|
let label = primary ? `Join ${server.name}` : "Join Fallback"
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
|
@ -1075,15 +1075,18 @@ const GatherVotingResults = React.createClass({
|
||||||
<div className="panel-body">
|
<div className="panel-body">
|
||||||
<div className="row">
|
<div className="row">
|
||||||
<div className="col-md-4">
|
<div className="col-md-4">
|
||||||
|
<h4>Map Selection</h4>
|
||||||
<dl>
|
<dl>
|
||||||
<dt>Maps</dt>
|
<dt>Maps</dt>
|
||||||
<dd>{maps[0].name} <br />(Alternate: {maps[1].name})</dd>
|
<dd>{maps[0].name} <br />(Alternate: {maps[1].name})</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-md-4">
|
<div className="col-md-4">
|
||||||
|
<h4>Primary Server</h4>
|
||||||
{this.serverTable(mainServer, true)}
|
{this.serverTable(mainServer, true)}
|
||||||
</div>
|
</div>
|
||||||
<div className="col-md-4">
|
<div className="col-md-4">
|
||||||
|
<h4>Fallback Server</h4>
|
||||||
{this.serverTable(altServer)}
|
{this.serverTable(altServer)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue