Skip to content

Commit

Permalink
Fix errors during build
Browse files Browse the repository at this point in the history
  • Loading branch information
Quetzacoalt91 committed Jan 3, 2024
1 parent e358c91 commit 08f6cae
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
$t(`smartShoppingCampaignCreation.${dimensionName}`),
this.totalProducts,
],
),
)
}}
</template>
<template v-else>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@
$t(`smartShoppingCampaignCreation.${dimensionName}`),
this.totalProducts,
],
),
)
}}
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<span class="text-muted d-block">
<template
v-for="(issue, index) in issues"
:key="index"
><!--
comment is necessary to have the comma next to the link
--><span
Expand All @@ -23,7 +24,6 @@
>, </span><!--
comment is necessary to have the comma next to the link
--><a
:key="index"
:href="issue.documentation"
target="_blank"
class="text-muted ps_gs-fz-12 font-weight-normal mt-3 mt-md-0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,11 @@

<b-tbody>
<template v-for="(product, index) in items">
<template v-for="(status, indexStatus) in onlyDisapproved(product.statuses)">
<template
v-for="(status, indexStatus) in onlyDisapproved(product.statuses)"
:key="`${index}-${indexStatus}`"
>
<ProductFeedTableStatusDetailsRow
:key="`${index}-${indexStatus}`"
:product="product"
:status="status"
:index-status="indexStatus"
Expand Down

0 comments on commit 08f6cae

Please sign in to comment.