Skip to content

Commit

Permalink
fix(@dpc-sdp/ripple-tide-search): fix for dependent filter using elas…
Browse files Browse the repository at this point in the history
…ticsearch

(cherry picked from commit 44dc7a0)
  • Loading branch information
David Featherston committed Mar 26, 2024
1 parent db4374e commit 6811909
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@
"terms": {
"field_node_site": [8888]
}
},
null
}
]
}
},
Expand Down
7 changes: 4 additions & 3 deletions packages/ripple-tide-search/composables/useTideSearch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -354,10 +354,11 @@ export default ({
)
}

return fn(itm, filterVal)
return fn(itm, filterVal)
}
}
}
})
})
.filter(Boolean)
})

const getQueryDSL = async () => {
Expand Down

0 comments on commit 6811909

Please sign in to comment.