Skip to content

Commit

Permalink
Updating name of 'Type of Service' field, removing 'System Level' fie…
Browse files Browse the repository at this point in the history
…ld, and adding FedContractorLoc data field in the FISMA report and modal, satisfying issues #378, #377, #376
  • Loading branch information
hatfieldjm4 committed May 16, 2024
1 parent b14cc5a commit c2a6745
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 13 deletions.
10 changes: 5 additions & 5 deletions src/app/components/modals/fisma-modal/fisma-modal.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,15 +120,15 @@ <h5>Value</h5>
<td>{{ fisma.RenewalDate | date : "longDate" }}</td>
</tr>
<tr>
<td><i class="fa fa-door-open"></i>Responsible Org</td>
<td>{{ fisma.RespOrg }}</td>
<td><i class="fas fa-layer-group"></i>Fed or Contractor System</td>
<td>{{ fisma.FedContractorLoc }}</td>
</tr>
<tr>
<td><i class="fas fa-layer-group"></i>System Level</td>
<td>{{ fisma.SystemLevel }}</td>
<td><i class="fa fa-door-open"></i>Responsible Org</td>
<td>{{ fisma.RespOrg }}</td>
</tr>
<tr>
<td><i class="fa fa-certificate"></i>Type of Service</td>
<td><i class="fa fa-certificate"></i>Cloud Service Type</td>
<td>{{ fisma.ServiceType }}</td>
</tr>
</tbody>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ <h5>Value</h5>
</td>
</tr>
<tr>
<td><i class="fa fa-certificate"></i>Service Type</td>
<td><i class="fa fa-certificate"></i>Cloud Service Type</td>
<td>{{ system.ServiceType }}</td>
</tr>
</tbody>
Expand Down
20 changes: 13 additions & 7 deletions src/app/views/security/fisma/fisma.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,6 @@ export class FismaComponent implements OnInit {
title: 'System Name',
sortable: true,
},
{
field: 'SystemLevel',
title: 'System Level',
sortable: true,
visible: false,
},
{
field: 'Status',
title: 'Status',
Expand Down Expand Up @@ -150,12 +144,24 @@ export class FismaComponent implements OnInit {
sortable: true,
visible: false,
},
{
field: 'FedContractorLoc',
title: 'Fed or Contractor System',
sortable: true,
visible: false,
},
{
field: 'RespOrg',
title: 'Responsible Org',
sortable: true,
visible: false,
} /* , {
},
{
field: 'ServiceType',
title: 'Cloud Service Type',
sortable: true,
visible: false,
}, /* , {
field: 'BusOrg',
title: 'Business Org',
sortable: true,
Expand Down
6 changes: 6 additions & 0 deletions src/app/views/systems/systems/systems.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,12 @@ export class SystemsComponent implements OnInit {
sortable: true,
visible: false,
},
{
field: 'ServiceType',
title: 'Cloud Service Type',
sortable: true,
visible: false,
},
{
field: 'AO',
title: 'Authorizing Official',
Expand Down

0 comments on commit c2a6745

Please sign in to comment.