You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
yes of course this is the function that i am using
` const ApplyFilter =(Filters , newdata ) =>{
if (isEmptyList(Filters )) {
// to not delete my data
SetFiltredData(props.opportunities)
return;
}
for(var filter of Filters) {
newdata[props.currentStatusView] = newdata[props.currentStatusView].filter(
(item) => {
return item["search Key "] === filter.value
}
)
}
// just to update my new data you can make it as return
SetFiltredData (newdata)
I have an array of 3 different values, it is possible to search across the three of them?
The text was updated successfully, but these errors were encountered: