Skip to content

Commit

Permalink
23821 - Update Continuation Table Contact Email Property (#3135)
Browse files Browse the repository at this point in the history
Signed-off-by: Qin <[email protected]>
  • Loading branch information
ArwenQin authored Oct 31, 2024
1 parent 8f3faad commit 79bcbe0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions auth-web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion auth-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "auth-web",
"version": "2.6.105",
"version": "2.6.106",
"appName": "Auth Web",
"sbcName": "SBC Common Components",
"private": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ export default defineComponent({
{ text: 'Date Submitted', value: 'submissionDate' },
{ text: 'NR Number', value: 'nrNumber' },
{ text: 'Identifying Number', value: 'identifier' },
{ text: 'Contact Email', value: 'officeEmail' },
{ text: 'Contact Email', value: 'contactEmail' },
{ text: 'Status', value: 'status' },
{ text: 'Actions', value: 'action' }
],
Expand All @@ -412,7 +412,7 @@ export default defineComponent({
endDate: '',
nrNumber: '',
identifier: '',
officeEmail: '',
contactEmail: '',
status: ['AWAITING_REVIEW', 'CHANGE_REQUESTED', 'RESUBMITTED'],
sortBy: 'submissionDate',
sortDesc: false
Expand Down Expand Up @@ -505,7 +505,7 @@ export default defineComponent({
endDate: '',
nrNumber: '',
identifier: '',
officeEmail: '',
contactEmail: '',
status: []
}
}
Expand Down Expand Up @@ -541,7 +541,7 @@ export default defineComponent({
return params.startDate.length > 0 ||
params.nrNumber.length > 0 ||
params.identifier.length > 0 ||
params.officeEmail.length > 0 ||
params.contactEmail.length > 0 ||
params.status.length > 0
}
Expand Down
4 changes: 2 additions & 2 deletions auth-web/src/models/continuation-review.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export interface ContinuationReviewResultIF {

/** The Continuation Review API response. */
export interface ContinuationReviewIF {
officeEmail: string
contactEmail: string
creationDate: string // 'YYYY-MM-DDTHH:MM.SS.000+00:00'
filingId: number
filingLink: string // URL for the continuation in filing
Expand Down Expand Up @@ -81,7 +81,7 @@ export interface ReviewFilterParams {
limit?: number
nrNumber?: string
identifier?: string
officeEmail?: string
contactEmail?: string
decisionMadeBy?: string
status?: string[]
sortBy?: string
Expand Down

0 comments on commit 79bcbe0

Please sign in to comment.