Skip to content

Commit

Permalink
removed force click on category selection (#4267)
Browse files Browse the repository at this point in the history
  • Loading branch information
wojteknowacki authored Sep 27, 2023
1 parent 19c33d1 commit d42076f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/wise-rockets-sit.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"saleor-dashboard": patch
---

removed force click on category selection
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export function fillUpProductOrganization({
export function fillUpCollectionAndCategory({ category, collection }) {
const organization = {};
return cy
.fillAutocompleteSelect(PRODUCT_DETAILS.categoryInput, category, true)
.fillAutocompleteSelect(PRODUCT_DETAILS.categoryInput, category, false)
.then(selected => {
organization.category = selected;
cy.fillNewMultiSelect(PRODUCT_DETAILS.collectionInput, collection);
Expand Down

0 comments on commit d42076f

Please sign in to comment.