mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-22 02:05:41 +01:00
fix: disable the scan related button when installation without scanner or scanner deactived (#20652)
Signed-off-by: chlins <chlins.zhang@gmail.com>
This commit is contained in:
parent
04b0cc0b08
commit
35d1032ff7
@ -127,6 +127,12 @@ export class ArtifactListPageService {
|
||||
ClrLoadingState.ERROR
|
||||
);
|
||||
}
|
||||
} else {
|
||||
this.updateStates(
|
||||
false,
|
||||
ClrLoadingState.ERROR,
|
||||
ClrLoadingState.ERROR
|
||||
);
|
||||
}
|
||||
},
|
||||
error => {
|
||||
|
@ -15,7 +15,6 @@
|
||||
<clr-dg-action-bar class="action-bar">
|
||||
<div>
|
||||
<button
|
||||
*ngIf="hasEnabledScanner"
|
||||
id="scan-btn"
|
||||
[clrLoading]="scanBtnState"
|
||||
type="button"
|
||||
@ -35,7 +34,6 @@
|
||||
<span>{{ 'VULNERABILITY.SCAN_NOW' | translate }}</span>
|
||||
</button>
|
||||
<button
|
||||
*ngIf="hasEnabledSbom()"
|
||||
id="generate-sbom-btn"
|
||||
[clrLoading]="generateSbomBtnState"
|
||||
type="button"
|
||||
@ -69,7 +67,6 @@
|
||||
<button
|
||||
clrDropdownItem
|
||||
id="stop-scan"
|
||||
*ngIf="hasEnabledScanner"
|
||||
[clrLoading]="stopBtnState"
|
||||
type="button"
|
||||
class="btn btn-secondary scan-btn action-dropdown-item"
|
||||
@ -84,7 +81,6 @@
|
||||
<button
|
||||
clrDropdownItem
|
||||
id="stop-sbom-btn"
|
||||
*ngIf="hasEnabledSbom()"
|
||||
[clrLoading]="stopBtnState"
|
||||
type="button"
|
||||
class="btn btn-secondary scan-btn action-dropdown-item"
|
||||
@ -99,7 +95,6 @@
|
||||
<span>{{ 'SBOM.STOP' | translate }}</span>
|
||||
</button>
|
||||
<div
|
||||
*ngIf="hasEnabledScanner || hasEnabledSbom()"
|
||||
class="dropdown-divider"
|
||||
role="separator"
|
||||
aria-hidden="true"></div>
|
||||
|
Loading…
Reference in New Issue
Block a user