From 05ad78b974b1f8e9ad1f6ad20dca8698b58b6415 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9verin=20Beauvais?= Date: Tue, 4 Apr 2023 12:21:18 -0700 Subject: [PATCH] 15864 Fixed limited resto legal name (#481) - app version = 6.2.2 - fixed legal name property --- package-lock.json | 4 ++-- package.json | 2 +- .../FilingHistoryList/filings/LimitedRestoration.vue | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 5183543bd..65f50bb0b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "business-filings-ui", - "version": "6.2.1", + "version": "6.2.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "business-filings-ui", - "version": "6.2.1", + "version": "6.2.2", "dependencies": { "@babel/compat-data": "^7.19.1", "@bcrs-shared-components/breadcrumb": "2.1.11", diff --git a/package.json b/package.json index 3fe7e39bb..c41e1263c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "business-filings-ui", - "version": "6.2.1", + "version": "6.2.2", "private": true, "appName": "Filings UI", "sbcName": "SBC Common Components", diff --git a/src/components/Dashboard/FilingHistoryList/filings/LimitedRestoration.vue b/src/components/Dashboard/FilingHistoryList/filings/LimitedRestoration.vue index db29e887b..57e47e271 100644 --- a/src/components/Dashboard/FilingHistoryList/filings/LimitedRestoration.vue +++ b/src/components/Dashboard/FilingHistoryList/filings/LimitedRestoration.vue @@ -36,7 +36,7 @@ export default class LimitedRestoration extends Vue { /** The legal name from the restoration filing. */ get legalName (): string { - return this.filing.data?.restoration?.legalName || '[unknown]' + return this.filing.data?.restoration?.toLegalName || '[unknown]' } /** The expiry date of the limited restoration filing as a Pacific date. */