Skip to content

Commit

Permalink
Merge pull request #759 from ArwenQin/24104-Continuation-Authorizatio…
Browse files Browse the repository at this point in the history
…n-Fee

24104 - Hide Fee Summary for Continuation Authorization
  • Loading branch information
ArwenQin authored Nov 25, 2024
2 parents 74b93e7 + c64a565 commit bfb7acc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 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-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

0 comments on commit bfb7acc

Please sign in to comment.