Skip to content
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

24104 - Hide Fee Summary for Continuation Authorization #759

Merged
merged 3 commits into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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-create-ui",
"version": "5.14.3",
"version": "5.14.4",
"private": true,
"appName": "Create UI",
"sbcName": "SBC Common Components",
Expand Down
4 changes: 1 addition & 3 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@
lg="3"
>
<!-- Render fee summary only after data is loaded. -->
<aside v-if="haveData">
<aside v-if="haveData && !isContinuationInAuthorization">
<affix
relative-element-selector=".col-lg-9"
:offset="{ top: 100, bottom: -100 }"
Expand Down Expand Up @@ -482,8 +482,6 @@ export default class App extends Mixins(CommonMixin, DateMixin, FilingTemplateMi
get filingLabel (): string {
// special case for firm dissolutions
if (this.isEntityFirm && this.isDissolutionFiling) return 'Dissolution'
// special case for continuation in authorizations
if (this.isContinuationInAuthorization) return 'Continuation Authorization'
// otherwise, no special label
return null
}
Expand Down
Loading