Add missing phase info
This commit is contained in:
parent
7a199f63eb
commit
e8458267fd
2 changed files with 7 additions and 3 deletions
|
@ -857,8 +857,8 @@ i.toggle-icon:hover {
|
|||
background-color: #f0ad4e;
|
||||
}
|
||||
|
||||
.phase-icon.priming-cache {
|
||||
background-color: #ddd;
|
||||
.phase-icon.priming-cache, .phase-icon.checking-cache {
|
||||
background-color: #cab442;
|
||||
}
|
||||
|
||||
.phase-icon.pushing {
|
||||
|
@ -2586,7 +2586,7 @@ p.editable:hover i {
|
|||
}
|
||||
|
||||
.repo-build .build-pane .build-logs .log-container.command {
|
||||
margin-left: 42px;
|
||||
margin-left: 22px;
|
||||
}
|
||||
|
||||
.repo-build .build-pane .build-logs .container-header.building {
|
||||
|
|
|
@ -5824,6 +5824,9 @@ quayApp.directive('buildMessage', function () {
|
|||
case 'building':
|
||||
return 'Building image from Dockerfile';
|
||||
|
||||
case 'checking-cache':
|
||||
return 'Looking up cached images';
|
||||
|
||||
case 'priming-cache':
|
||||
return 'Priming cache for build';
|
||||
|
||||
|
@ -5880,6 +5883,7 @@ quayApp.directive('buildProgress', function () {
|
|||
break;
|
||||
|
||||
case 'initializing':
|
||||
case 'checking-cache':
|
||||
case 'starting':
|
||||
case 'waiting':
|
||||
case 'cannot_load':
|
||||
|
|
Reference in a new issue