Skip to content

Commit

Permalink
chore: Upgrade antd@4.10.3 (#22007)
Browse files Browse the repository at this point in the history
  • Loading branch information
geido authored Nov 17, 2022
1 parent 83d990d commit d352b74
Show file tree
Hide file tree
Showing 8 changed files with 532 additions and 541 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -455,13 +455,17 @@ export function inputNativeFilterDefaultValue(defaultValue: string) {
cy.contains('Filter has default value').click();
cy.contains('Default value is required').should('be.visible');
cy.get(nativeFilters.modal.container).within(() => {
cy.get(nativeFilters.filterConfigurationSections.filterPlaceholder)
.contains('options')
.should('be.visible');
cy.get(
nativeFilters.filterConfigurationSections.filterPlaceholder,
).contains('options');
cy.get(nativeFilters.filterConfigurationSections.collapsedSectionContainer)
.first()
.get(nativeFilters.filtersPanel.columnEmptyInput)
.type(`${defaultValue}{enter}`);
.eq(1)
.within(() => {
cy.get('.ant-select-selection-search-input').type(
`${defaultValue}{enter}`,
{ force: true },
);
});
});
}

Expand Down
Loading

0 comments on commit d352b74

Please sign in to comment.