project-booster-vue 8.115.7 → 8.115.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "project-booster-vue",
3
- "version": "8.115.7",
3
+ "version": "8.115.8",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "test:unit": "vue-cli-service test:unit --forceExit --detectOpenHandles",
@@ -4,7 +4,7 @@
4
4
  :class="`pb-restitution pb-restitution--${componentTheme}`"
5
5
  align-items="center"
6
6
  direction="column"
7
- :style="`min-height: ${displayRestitutionExit ? 'auto' : minHeight};`"
7
+ :style="`min-height: ${restitutionMinHeight};`"
8
8
  ref="pbRestitution"
9
9
  >
10
10
  <m-link
@@ -165,6 +165,7 @@ export default {
165
165
  notifications: [],
166
166
  displayDialog: false,
167
167
  dialogViewModel: null,
168
+ restitutionMinHeight: '100vh',
168
169
  }),
169
170
 
170
171
  computed: {
@@ -208,6 +209,9 @@ export default {
208
209
  this.projectSaveItemPayload = saveAction ? saveAction.payload : {};
209
210
  this.showSaveProjectItem = this.showSaveEstimate;
210
211
  }
212
+ setTimeout(() => {
213
+ this.restitutionMinHeight = this.payload?.exitOptions ? 'auto' : this.minHeight;
214
+ }, 300);
211
215
  },
212
216
 
213
217
  mounted() {