Skip to content

Commit

Permalink
fixed sensitive data icon
Browse files Browse the repository at this point in the history
  • Loading branch information
dweinholz committed Apr 25, 2023
1 parent 54c5292 commit 88b6ff1
Showing 1 changed file with 8 additions and 47 deletions.
55 changes: 8 additions & 47 deletions src/app/facility_manager/facility.application.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -125,43 +125,7 @@
<ng-container>
<tr>
<td>
<span
*ngIf="application?.project_application_openstack_project"
style="font-size: 20px"
class="project-openstack_plain_white_redbg"
data-toggle="tooltip"
title="This is an Openstack project"
>
<span class="path1"></span>
<span class="path2"></span>
</span>

<span
*ngIf="application?.project_application_pi_approved"
style="margin: 2px"
class="badge"
data-toggle="tooltip"
data-placement="auto"
title="This application was approved by a PI"
>
<span class="icon icon-yes_pi" style="font-size: 20px">
<span class="path1"></span><span class="path2"></span><span class="path3"></span
><span class="path4"></span>
</span>
</span>
<span
*ngIf="!application?.project_application_pi_approved"
style="margin: 2px"
class="badge"
data-toggle="tooltip"
data-placement="auto"
title="This application is yet not approved by a PI"
>
<span class="icon icon-no_pi" style="font-size: 2em">
<span class="path1"></span><span class="path2"></span><span class="path3"></span
><span class="path4"></span>
</span>
</span>
<app-application-badges [application]="application"></app-application-badges>
</td>
<td>{{ application?.project_application_name }}</td>
<td>{{ application?.project_application_shortname }}</td>
Expand Down Expand Up @@ -923,12 +887,9 @@
<ng-container *ngFor="let application of applications_history">
<ng-container *ngIf="application?.project_application_date_submitted">
<tr>
<td>
<app-application-badges
[application]="application"></app-application-badges>


</td>
<td>
<app-application-badges [application]="application"></app-application-badges>
</td>
<td>{{ application?.project_application_name }}</td>
<td>{{ application?.project_application_shortname }}</td>
<td>{{ application?.project_application_date_submitted }}</td>
Expand Down Expand Up @@ -958,10 +919,10 @@
Information
</button>
<!--button (click)="deleteModal.show();setDeleteId(application?.application_status_id)"
type="button"
class="btn btn-secondary">
Remove Application
</button-->
type="button"
class="btn btn-secondary">
Remove Application
</button-->
</td>
</tr>
<td colspan="12">
Expand Down

0 comments on commit 88b6ff1

Please sign in to comment.