project-booster-vue 9.18.0 → 9.18.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "project-booster-vue",
3
- "version": "9.18.0",
3
+ "version": "9.18.1",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -56,7 +56,7 @@
56
56
  <m-flex class="pb-configurations-section__link-container" v-if="readOnly && project">
57
57
  <m-link
58
58
  class="pb-configurations-section__link-portal-oaa"
59
- label="Lien vers le portail OAA"
59
+ label="Accéder au portail des OAA"
60
60
  size="s"
61
61
  @click="window.open(linkPortalOaa, '_blank')"
62
62
  />
@@ -111,9 +111,7 @@ export default defineComponent({
111
111
  project: 'getProject',
112
112
  }),
113
113
  linkPortalOaa() {
114
- return this.project
115
- ? `http://rcloset.fr.corp.leroymerlin.com:81/page_tunnel_oaa/?mag=${this.project.store}`
116
- : null;
114
+ return this.project ? `https://portailoaa.fr.corp.leroymerlin.com/search?store=${this.project.store}` : null;
117
115
  },
118
116
  },
119
117