project-booster-vue 9.18.0 → 9.18.3

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.3",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -56,9 +56,10 @@
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
- @click="window.open(linkPortalOaa, '_blank')"
61
+ :href="linkPortalOaa"
62
+ target="_blank"
62
63
  />
63
64
  </m-flex>
64
65
  </m-flex>
@@ -111,9 +112,7 @@ export default defineComponent({
111
112
  project: 'getProject',
112
113
  }),
113
114
  linkPortalOaa() {
114
- return this.project
115
- ? `http://rcloset.fr.corp.leroymerlin.com:81/page_tunnel_oaa/?mag=${this.project.store}`
116
- : null;
115
+ return this.project ? `https://portailoaa.fr.corp.leroymerlin.com/search?store=${this.project.store}` : null;
117
116
  },
118
117
  },
119
118