1
0
Fork 0

only fill version when defined

This commit is contained in:
Jan Steemann 2013-08-01 18:41:43 +02:00
parent 38d8b0b598
commit acafdb4aec
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ var dashboardView = Backbone.View.extend({
var loggerRunning = this.replLogState.state.running;
var applierRunning = this.replApplyState.state.running;
if (applierRunning || this.replApplyState.state.lastError != '') {
if (applierRunning || this.replApplyState.state.lastError !== '') {
$('#detailReplication').height(290);
$('.checkApplyRunningStatus').show();
}