project-booster-vue 8.113.4 → 8.115.1
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 +1 -1
- package/src/components/landing/PbProjectsLandingEstimators.vue +6 -0
- package/src/components/media/detail/PbMediaDetail.vue +1 -1
- package/src/components/media/list/PbMediaList.vue +0 -1
- package/src/components/mozaic/toggle/MToggle.vue +4 -0
- package/src/components/restitution/PbRestitution.vue +1 -1
- package/src/components/restitution/PbRestitutionBody.vue +1 -1
package/package.json
CHANGED
|
@@ -99,6 +99,12 @@ export default {
|
|
|
99
99
|
image: 'https://storage.googleapis.com/project-booster-media/insulation/logo-insulation-estimator.png',
|
|
100
100
|
href: '/estimation-budget-cout-isolation.html',
|
|
101
101
|
},
|
|
102
|
+
{
|
|
103
|
+
title: 'Estimer le coût de votre sol',
|
|
104
|
+
text: 'Carrelage, sol stratifié, sol souple ...',
|
|
105
|
+
image: 'https://storage.googleapis.com/project-booster-media/floor/illu-floor-cover.png',
|
|
106
|
+
href: '/projets/estimations/estimation-budget-cout-revetement-de-sol.html',
|
|
107
|
+
},
|
|
102
108
|
],
|
|
103
109
|
};
|
|
104
110
|
},
|
|
@@ -375,7 +375,7 @@ export default {
|
|
|
375
375
|
},
|
|
376
376
|
|
|
377
377
|
reset() {
|
|
378
|
-
this.mediaName = this.media.title ? this.media.title : '';
|
|
378
|
+
this.mediaName = this.media && this.media.title ? this.media.title : '';
|
|
379
379
|
this.isEditingName = false;
|
|
380
380
|
this.isDisplayingInfo = false;
|
|
381
381
|
this.isSharing = false;
|
|
@@ -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: ${
|
|
7
|
+
:style="`min-height: ${displayRestitutionExit ? 'auto' : minHeight};`"
|
|
8
8
|
ref="pbRestitution"
|
|
9
9
|
>
|
|
10
10
|
<m-link
|