-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Voluntary Dissolution filing display changes #61
Conversation
/gcbrun |
Temporary Url for review: https://business-dashboard-dev--pr-61-qfb1xk2v.web.app |
@@ -46,20 +39,7 @@ const dissolutionDateTime = | |||
<div v-else-if="isStatusCompleted" data-cy="completed-dissolution-details"> | |||
<strong>{{ $t('text.filing.dissolution.completed') }}</strong> | |||
|
|||
<p v-if="isEntityFirm"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we want to keep this v-if as different text is displayed based on whether the business is an entity firm or not. I think we get incorrect text in the screenshot because isEntityFirm
is actually a function. Changing it to v-if="isEntityFirm()"
can solve the issue.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added back along with all the other stuff that was ripped out as part of removing
|
||
<p v-if="!isEntityFirm"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
brought back but as a v-else instead of a !
/gcbrun |
Temporary Url for review: https://business-dashboard-dev--pr-61-qfb1xk2v.web.app |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work. Looks good to me.
*Issue:*bcgov/entity#23976
Description of changes:
Added spacing between the lines in filing, added the fallback case for when it's paid and effective now, removed the switch between entityFirm and !entityFirm text as it was not correct.
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of the namex license (Apache 2.0).