diff --git a/src/components/approval-type/ApprovalType.vue b/src/components/approval-type/ApprovalType.vue index 2ca511b7..0c33d005 100644 --- a/src/components/approval-type/ApprovalType.vue +++ b/src/components/approval-type/ApprovalType.vue @@ -170,7 +170,7 @@ export default class ApprovalType extends Vue { ] get noticeDateErrorMsg (): string { - return (this.validate && !this.noticeDateText) ? 'Date is required': null + return (this.validate && !this.noticeDateText) ? 'Date is required' : null } get applicationDateErrorMsg (): string { diff --git a/src/enums/filing-names.ts b/src/enums/filing-names.ts index c56312a2..5576a76e 100644 --- a/src/enums/filing-names.ts +++ b/src/enums/filing-names.ts @@ -14,6 +14,7 @@ export enum FilingNames { CONSENT_AMALGAMATION_OUT = 'Consent to Amalgamation Out', CONSENT_CONTINUATION_OUT = 'Consent to Continuation Out', CONTINUATION_IN_APPLICATION = 'Continuation Application', + CONTINUATION_AUTHORIZATION = 'Continuation Authorization', CONTINUATION_OUT = 'Continuation Out', CONVERSION = 'Record Conversion', CORRECTION = 'Correction',