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>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="alignLeft">Clients Status</td>
|
||||
<td class="alignLeft">Clients status</td>
|
||||
<td id="logClientsVal"></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
|
@ -133,6 +133,9 @@ var dashboardView = Backbone.View.extend({
|
|||
if (this.replLogState.state.lastLogTick === '0') {
|
||||
lastLog = '-';
|
||||
}
|
||||
else {
|
||||
lastLog = this.replLogState.state.lastLogTick;
|
||||
}
|
||||
|
||||
var numEvents = this.replLogState.state.totalEvents || 0;
|
||||
|
||||
|
|
Loading…
Reference in New Issue