Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
urmikgov committed Nov 9, 2023
1 parent 8b5703f commit 946aacf
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class ApplicationSearchTableComponent implements OnDestroy {
@Output() tableChange = new EventEmitter<TableChange>();

displayedColumns = ['fileId', 'ownerName', 'type', 'portalStatus', 'outcome', 'lastUpdate', 'government'];
outcomeMapping: {[code:string] : string } = {
outcomeMapping: Record<string, string> = {
'APPR': "Approved",
'REFU': "Refused",
'RESC': "Rescinded",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class NoticeOfIntentSearchTableComponent implements OnDestroy {
@Output() tableChange = new EventEmitter<TableChange>();

displayedColumns = ['fileId', 'ownerName', 'type', 'portalStatus', 'outcome', 'lastUpdate', 'government'];
outcomeMapping: {[code:string] : string } = {
outcomeMapping: Record<string, string> = {
'APPR': "Approved",
'ONTP': "Ordered not to Proceed (NOI)",
}
Expand Down
1 change: 0 additions & 1 deletion services/apps/alcs/src/alcs/search/search.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ export class SearchResultDto {
fileNumber: string;
boardCode?: string;
label?: ApplicationTypeDto;
outcome?: string
}

export type SearchEntityClass = 'APP' | 'NOI' | 'PLAN' | 'COV' | 'NOTI';
Expand Down

0 comments on commit 946aacf

Please sign in to comment.