Skip to content

Commit

Permalink
- app version = 5.11.12 (#725)
Browse files Browse the repository at this point in the history
- conditionally show fee summary

Co-authored-by: Severin Beauvais <[email protected]>
  • Loading branch information
severinbeauvais and Severin Beauvais authored Aug 6, 2024
1 parent dbd0cf8 commit 571e336
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 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.11.11",
"version": "5.11.12",
"private": true,
"appName": "Create UI",
"sbcName": "SBC Common Components",
Expand Down
6 changes: 4 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,9 @@
cols="12"
lg="3"
>
<!-- Render fee summary only after data is loaded. -->
<aside v-if="haveData">
<!-- Render fee summary only after data is loaded, -->
<!-- and if this isn't a change-requested filing. -->
<aside v-if="haveData && getFilingStatus !== FilingStatus.CHANGE_REQUESTED">
<affix
relative-element-selector=".col-lg-9"
:offset="{ top: 100, bottom: -100 }"
Expand Down Expand Up @@ -375,6 +376,7 @@ export default class App extends Mixins(CommonMixin, DateMixin, FilingTemplateMi
// declarations for template
readonly RouteNames = RouteNames
readonly FilingStatus = FilingStatus
readonly FilingTypes = FilingTypes
readonly axios = axios
readonly window = window
Expand Down

0 comments on commit 571e336

Please sign in to comment.