mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Fix for filter adjustment in related field (#6396)
- Cannot compare two objects directly
This commit is contained in:
parent
5bc00298c6
commit
2a924ec85b
@ -115,7 +115,7 @@ export function RelatedModelField({
|
||||
}
|
||||
|
||||
// If the filters have changed, clear the data
|
||||
if (_filters != filters) {
|
||||
if (JSON.stringify(_filters) !== JSON.stringify(filters)) {
|
||||
resetSearch();
|
||||
setFilters(_filters);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user