Skip to content

Commit

Permalink
fix(vuln form component): fixing the markdown icon
Browse files Browse the repository at this point in the history
The markdown icon was missing in two sections.  That has been corrected.

fix #468
  • Loading branch information
waterweasel4 committed Dec 2, 2020
1 parent d38ebf2 commit a7eee64
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frontend/src/app/vuln-form/vuln-form.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@
<div class="col-12">
<label for="detailedInfo">Detailed Information</label>
<div class="float-right">
<fa-icon (click)="toggleDetailedDescPreview()" *ngIf="!previewDetailedDesc" [icon]="faEye"></fa-icon>
<fa-icon (click)="toggleDetailedDescPreview()" *ngIf="previewDetailedDesc" [icon]="faEyeSlash"></fa-icon>
<i class="pi pi-eye" (click)="toggleDetailedDescPreview()" *ngIf="!previewDetailedDesc"></i>
<i class="pi pi-eye-slash" (click)="toggleDetailedDescPreview()" *ngIf="previewDetailedDesc"></i>
</div>
</div>
</div>
Expand All @@ -171,8 +171,8 @@
<div class="col-12">
<label for="remediation">Remediation</label>
<div class="float-right">
<fa-icon (click)="toggleRemediationPreview()" *ngIf="!previewRemediation" [icon]="faEye"></fa-icon>
<fa-icon (click)="toggleRemediationPreview()" *ngIf="previewRemediation" [icon]="faEyeSlash"></fa-icon>
<i class="pi pi-eye" (click)="toggleRemediationPreview()" *ngIf="!previewRemediation"></i>
<i class="pi pi-eye-slash" (click)="toggleRemediationPreview()" *ngIf="previewRemediation" [icon]="faEyeSlash"></i>
</div>
</div>
</div>
Expand Down

0 comments on commit a7eee64

Please sign in to comment.