diff --git a/.github/workflows/build-integrations-webapp-push-tag-shared.yaml b/.github/workflows/build-integrations-webapp-push-tag-shared.yaml index 920c0ba7..d0dbc41f 100644 --- a/.github/workflows/build-integrations-webapp-push-tag-shared.yaml +++ b/.github/workflows/build-integrations-webapp-push-tag-shared.yaml @@ -33,7 +33,7 @@ jobs: echo "COMMIT_SHA=$GITHUB_SHA" | tee -a "${GITHUB_ENV}" echo "IMAGE_TAG=${{ secrets.ECR }}/integrations:webapp-$TAG" | tee -a "${GITHUB_ENV}" echo "IMAGE_SOURCE_URL=https://github.com/weni-ai/weni-integrations-webapp" | tee -a "${GITHUB_ENV}" - echo "MANIFESTS_REPOSITORY=Ilhasoft/kubernetes-manifests-platform" | tee -a "${GITHUB_ENV}" + echo "MANIFESTS_REPOSITORY=weni-ai/kubernetes-manifests-platform" | tee -a "${GITHUB_ENV}" echo "MANIFESTS_APPLICATION=integrations-webapp" | tee -a "${GITHUB_ENV}" echo "MANIFESTS_PATCH_TARGET=deployment-webapp.json" | tee -a "${GITHUB_ENV}" diff --git a/src/components/whatsAppCatalogs/Card.vue b/src/components/whatsAppCatalogs/Card.vue index d561fe7f..258e153d 100644 --- a/src/components/whatsAppCatalogs/Card.vue +++ b/src/components/whatsAppCatalogs/Card.vue @@ -24,8 +24,8 @@ size="small" :textRight=" catalog.is_connected - ? $t('WhatsApp.catalog.list.actions.enabled_catalog') - : $t('WhatsApp.catalog.list.actions.disabled_catalog') + ? $t('WhatsApp.catalog.list.actions.active_catalog') + : $t('WhatsApp.catalog.list.actions.inactive_catalog') " @input="toggleCatalogConnect($event)" /> @@ -36,8 +36,8 @@ size="small" :textRight=" enabledCart - ? $t('WhatsApp.catalog.list.actions.enabled_cart') - : $t('WhatsApp.catalog.list.actions.disabled_cart') + ? $t('WhatsApp.catalog.list.actions.active_cart') + : $t('WhatsApp.catalog.list.actions.inactive_cart') " @click.native="toggleCart()" /> diff --git a/src/components/whatsAppCatalogs/List.vue b/src/components/whatsAppCatalogs/List.vue index a13c103f..f5c70381 100644 --- a/src/components/whatsAppCatalogs/List.vue +++ b/src/components/whatsAppCatalogs/List.vue @@ -54,14 +54,27 @@ scheme="feedback-red" :validate="connectedCatalog.name" :validatePlaceholder="connectedCatalog.name" - :title="$t('WhatsApp.catalog.list.disable_modal.title')" + :title=" + catalogToEnable + ? $t('WhatsApp.catalog.list.disable_modal.title_active') + : $t('WhatsApp.catalog.list.disable_modal.title') + " :actionPrimaryLabel="$t('WhatsApp.catalog.list.disable_modal.confirm')" :actionSecondaryLabel="$t('general.Cancel')" @click-action-secondary="closeModal" @click-action-primary="handleCatalogConfirmation" >