mirror of https://gitee.com/bigwinds/arangodb
Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel
This commit is contained in:
commit
d241b46325
|
@ -61,7 +61,7 @@
|
||||||
<td id="logLastTickVal"></td>
|
<td id="logLastTickVal"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="alignLeft">Clients Status</td>
|
<td class="alignLeft">Clients status</td>
|
||||||
<td id="logClientsVal"></td>
|
<td id="logClientsVal"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -133,6 +133,9 @@ var dashboardView = Backbone.View.extend({
|
||||||
if (this.replLogState.state.lastLogTick === '0') {
|
if (this.replLogState.state.lastLogTick === '0') {
|
||||||
lastLog = '-';
|
lastLog = '-';
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
lastLog = this.replLogState.state.lastLogTick;
|
||||||
|
}
|
||||||
|
|
||||||
var numEvents = this.replLogState.state.totalEvents || 0;
|
var numEvents = this.replLogState.state.totalEvents || 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue