Skip to content

Commit

Permalink
fix: app details and setup vtex
Browse files Browse the repository at this point in the history
  • Loading branch information
acnormun committed May 7, 2024
1 parent d296545 commit 694f1a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/app/AppDetailsAbout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="app-details-about__content__title">
{{ $t('apps.details.about.about_the_app') }}
</div>
<div class="app-details-about__content__description" v-html="$t(description)" />
<div class="app-details-about__content__description" v-html="$t(description || '')" />
</div>
<div v-if="links.length" class="app-details-about__links">
<div class="app-details-about__links__title">{{ $t('apps.details.about.useful_links') }}</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/app/AppDetailsHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</div>
<div class="app-details-header__content">
<div class="app-details-header__content__title">{{ app?.name }}</div>
<div class="app-details-header__content__description">{{ $t(app?.summary) }}</div>
<div class="app-details-header__content__description">{{ $t(app?.summary || '') }}</div>
</div>
<integrate-button
ref="unnnic-button-add"
Expand Down
2 changes: 1 addition & 1 deletion src/components/config/ecommerce/vtex/Setup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@
...mapState(ecommerce_store, ['generatedVtexAppUuid', 'errorVtexAppUuid']),
webhookUrl() {
const backendUrl = getEnv('VITE_APP_API_BASE_URL');
return `${backendUrl}/api/v1/webhook/vtex/${this.generatedVtexAppUuid}/products-update/api/notification/`;
return `${backendUrl}/api/v1/webhook/vtex/${this.generatedVtexAppUuid.uuid}/products-update/api/notification/`;
},
},
methods: {
Expand Down

0 comments on commit 694f1a1

Please sign in to comment.