Fix list job error message.

This commit is contained in:
kunw 2017-03-30 16:06:51 +08:00
parent a2cfbc5519
commit b677e8338b

View File

@ -22,7 +22,7 @@ export class ListJobComponent {
for(let i = 0; i < this.jobs.length; i++) {
let j = this.jobs[i];
if(j.status === 'retrying' || j.status === 'error') {
this.messageHandlerService.showError('', '');
this.messageHandlerService.showError('REPLICATION.FOUND_ERROR_IN_JOBS', '');
}
}
this.paginate.emit(state);