Merge branch 'master' into fix/action-state-parsing
This commit is contained in:
commit
5e55192326
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "2.15.6",
|
||||
"version": "2.15.7",
|
||||
"npmClient": "yarn",
|
||||
"packages": [
|
||||
"packages/*",
|
||||
|
|
|
@ -108,16 +108,13 @@
|
|||
}
|
||||
}
|
||||
|
||||
$: forceFetchRows(filter, fieldApi)
|
||||
$: forceFetchRows(filter)
|
||||
$: debouncedFetchRows(searchTerm, primaryDisplay, defaultValue)
|
||||
|
||||
const forceFetchRows = async () => {
|
||||
if (!fieldApi) {
|
||||
return
|
||||
}
|
||||
// if the filter has changed, then we need to reset the options, clear the selection, and re-fetch
|
||||
optionsObj = {}
|
||||
fieldApi.setValue([])
|
||||
fieldApi?.setValue([])
|
||||
selectedValue = []
|
||||
debouncedFetchRows(searchTerm, primaryDisplay, defaultValue)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue