Skip to content

Commit

Permalink
fix: flaky dashboard e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitaevg committed Apr 1, 2024
1 parent 92e17ce commit bbd823a
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ export const propertyFilterLogic = kea<propertyFilterLogicType>([

listeners(({ actions, props, values }) => ({
// Only send update if value is set to something
setFilter: async ({ property }, breakpoint) => {
await breakpoint(300)
setFilter: async ({ property }) => {
if (props.sendAllKeyUpdates || property?.value || (property?.key && property.type === 'hogql')) {
actions.update()
}
Expand Down

0 comments on commit bbd823a

Please sign in to comment.