mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-05 03:53:44 +02:00
Make status line in UI show "TUNNELED" if slow TCP tunneling mode is active.
This commit is contained in:
parent
7e647c5303
commit
9b0c8965bb
3 changed files with 3 additions and 3 deletions
|
@ -202,7 +202,7 @@ var ZeroTierNode = React.createClass({
|
||||||
</div></div>
|
</div></div>
|
||||||
<div className="bottom">
|
<div className="bottom">
|
||||||
<div className="left">
|
<div className="left">
|
||||||
<span className="statusLine"><span className="zeroTierAddress">{this.state.address}</span> {this.state.online ? 'ONLINE' : 'OFFLINE'} {this.state.version}</span>
|
<span className="statusLine"><span className="zeroTierAddress">{this.state.address}</span> {this.state.online ? (this.state.tcpFallbackActive ? 'TUNNELED' : 'ONLINE') : 'OFFLINE'} {this.state.version}</span>
|
||||||
</div>
|
</div>
|
||||||
<div className="right">
|
<div className="right">
|
||||||
<form onSubmit={this.joinNetwork}><input type="text" maxlength="16" placeholder="[ Network ID ]" onChange={this.handleNetworkIdEntry} size="16"/><button type="button" onClick={this.joinNetwork}>Join</button></form>
|
<form onSubmit={this.joinNetwork}><input type="text" maxlength="16" placeholder="[ Network ID ]" onChange={this.handleNetworkIdEntry} size="16"/><button type="button" onClick={this.joinNetwork}>Join</button></form>
|
||||||
|
|
|
@ -170,7 +170,7 @@ html,body {
|
||||||
.zeroTierNode > .bottom > .left > .statusLine {
|
.zeroTierNode > .bottom > .left > .statusLine {
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
font-size: 12pt;
|
font-size: 11pt;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
.zeroTierNode > .bottom > .right {
|
.zeroTierNode > .bottom > .right {
|
||||||
|
|
2
ui/ztui.min.js
vendored
2
ui/ztui.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Add table
Reference in a new issue