1
0
Fork 0

Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel

This commit is contained in:
Frank Celler 2013-08-20 15:32:43 +02:00
commit d241b46325
2 changed files with 4 additions and 1 deletions

View File

@ -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>

View File

@ -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;