css: fix internalerror text color
This commit is contained in:
parent
5860721a9a
commit
77ae613833
2 changed files with 3 additions and 3 deletions
|
@ -69,7 +69,7 @@
|
|||
|
||||
$scope.isBuilding = function(build) {
|
||||
if (!build) { return true; }
|
||||
return build.phase != 'complete' && build.phase != 'error';
|
||||
return build.phase != 'complete' && build.phase != 'error' && build.phase != 'internalerror';
|
||||
};
|
||||
}
|
||||
})();
|
||||
})();
|
||||
|
|
Reference in a new issue