Skip to content

Commit

Permalink
fix(product-types/b2c-lifestyle): furniture and decor color attribute…
Browse files Browse the repository at this point in the history
… is now searchable (#702)
  • Loading branch information
stephsprinkle authored Oct 31, 2024
1 parent a599e31 commit 1d115d7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/tidy-ravens-sort.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@commercetools-test-data/product-type': patch
---

B2C Lifestyle Presets - Updated Furniture and Decor product type attribute `color` to be searchable.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ describe(`with furnitureAndDecor preset`, () => {
"inputHint": "SingleLine",
"inputTip": undefined,
"isRequired": false,
"isSearchable": false,
"isSearchable": true,
"label": {
"de": undefined,
"de-DE": "Farbe",
Expand Down Expand Up @@ -197,7 +197,7 @@ describe(`with furnitureAndDecor preset`, () => {
"inputHint": "SingleLine",
"inputTip": undefined,
"isRequired": false,
"isSearchable": false,
"isSearchable": true,
"label": [
{
"locale": "en-GB",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const furnitureAndDecor = (): TProductTypeDraftBuilder =>
)
.isRequired(false)
.attributeConstraint(attributeConstraints.None)
.isSearchable(false)
.isSearchable(true)
.inputHint(inputHints.SingleLine),

AttributeDefinitionDraft.presets
Expand Down

0 comments on commit 1d115d7

Please sign in to comment.