Skip to content

Commit

Permalink
feat(admin-ui): Add product slug in product multi selector dialog com…
Browse files Browse the repository at this point in the history
…ponent (#2461)
  • Loading branch information
gdarchen authored Oct 17, 2023
1 parent b0ece21 commit b7f3452
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@
<span [title]="mode === 'product' ? item.productName : item.productVariantName">{{
mode === 'product' ? item.productName : item.productVariantName
}}</span>
<div *ngIf="mode === 'product'">
<small>
<span class="mr-1">{{ 'common.slug' | translate }}:</span>
<code>{{ item.slug }}</code>
</small>
</div>
<div *ngIf="mode === 'variant'"><small>{{ item.sku }}</small></div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,4 @@ vdr-select-toggle {
align-items: center;
justify-content: space-between;
}

0 comments on commit b7f3452

Please sign in to comment.