Skip to content

Commit

Permalink
15864 Fixed limited resto legal name (#481)
Browse files Browse the repository at this point in the history
- app version = 6.2.2
- fixed legal name property
  • Loading branch information
severinbeauvais authored Apr 4, 2023
1 parent 948f3bd commit 05ad78b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions 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 package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down

0 comments on commit 05ad78b

Please sign in to comment.