[fix] issue in front ui 2.0.1

1.fix add label issue
2.fix unauthorized user can contrl page
Signed-off-by: Yogi_Wang <yawang@vmware.com>
This commit is contained in:
Yogi_Wang 2020-06-02 10:19:02 +08:00
parent 58894e9d9c
commit 459314308b
3 changed files with 18 additions and 13 deletions

View File

@ -8,3 +8,4 @@
</div> </div>
</clr-alert> </clr-alert>
</div> </div>
<div *ngIf="globalMessageOpened" class="mask-layer"></div>

View File

@ -1,3 +1,9 @@
.alert-style { .alert-style {
display: inline; display: inline;
} }
.mask-layer {
position: absolute;
width: 100%;
height: 100%;
z-index: 10000;
}

View File

@ -446,20 +446,19 @@ export class ArtifactListTabComponent implements OnInit, OnDestroy {
} }
labelSelectedChange(artifact?: Artifact[]): void { labelSelectedChange(artifact?: Artifact[]): void {
if (artifact && artifact[0].labels) {
this.imageStickLabels.forEach(data => { this.imageStickLabels.forEach(data => {
data.iconsShow = false; data.iconsShow = false;
data.show = true; data.show = true;
}); });
if (artifact[0].labels.length) { if (artifact && artifact[0].labels && artifact[0].labels.length) {
artifact[0].labels.forEach((labelInfo: Label) => { artifact[0].labels.forEach((labelInfo: Label) => {
let findedLabel = this.imageStickLabels.find(data => labelInfo.id === data['label'].id); let findedLabel = this.imageStickLabels.find(data => labelInfo.id === data['label'].id);
if (findedLabel) {
this.imageStickLabels.splice(this.imageStickLabels.indexOf(findedLabel), 1); this.imageStickLabels.splice(this.imageStickLabels.indexOf(findedLabel), 1);
this.imageStickLabels.unshift(findedLabel); this.imageStickLabels.unshift(findedLabel);
findedLabel.iconsShow = true; findedLabel.iconsShow = true;
});
} }
});
} }
} }
@ -491,7 +490,6 @@ export class ArtifactListTabComponent implements OnInit, OnDestroy {
}; };
this.newArtifactService.addLabel(params).subscribe(res => { this.newArtifactService.addLabel(params).subscribe(res => {
this.refresh(); this.refresh();
// set the selected label in front // set the selected label in front
this.imageStickLabels.splice(this.imageStickLabels.indexOf(labelInfo), 1); this.imageStickLabels.splice(this.imageStickLabels.indexOf(labelInfo), 1);
this.imageStickLabels.some((data, i) => { this.imageStickLabels.some((data, i) => {