-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NRPT-750: add enforcement text page. Updating config service (#855)
- Loading branch information
Daniel Truong
authored
May 11, 2021
1 parent
f16dd0b
commit cddac73
Showing
26 changed files
with
947 additions
and
187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 0 additions & 14 deletions
14
angular/projects/admin-nrpti/src/app/communications/communications.resolver.ts
This file was deleted.
Oops, something went wrong.
26 changes: 6 additions & 20 deletions
26
...pp/enforcement-actions/enforcement-actions-table/enforcement-actions-table.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,7 @@ | ||
<main class="container-fluid-padding"> | ||
<h1>All Enforcement Actions</h1> | ||
<br /> | ||
<search-filter-template | ||
#explorePanel | ||
(searchEvent)='executeSearch($event)' | ||
[title]="'Keyword Search'" | ||
[tooltip]="'Enter an enforcement action to search for'" | ||
[advancedFilters]="false"> | ||
</search-filter-template> | ||
<div *ngIf="!tableData.totalListItems"> | ||
No Enforcement Actions found. | ||
</div> | ||
|
||
<div *ngIf="!tableData.totalListItems"> | ||
No Enforcement Actions found. | ||
</div> | ||
|
||
<lib-table-template | ||
*ngIf="tableData.totalListItems > 0" | ||
[data]="tableData" | ||
(messageOut)="onMessageOut($event)" | ||
></lib-table-template> | ||
</main> | ||
<lib-table-template *ngIf="tableData.totalListItems > 0" | ||
[data]="tableData" | ||
(messageOut)="onMessageOut($event)"></lib-table-template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
angular/projects/admin-nrpti/src/app/enforcement-actions/enforcement-actions.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.add-record { | ||
border-top: 1px solid lightgray; | ||
} |
Oops, something went wrong.