2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-15 19:45:46 +00:00

Fix for filter adjustment in related field (#6396)

- Cannot compare two objects directly
This commit is contained in:
Oliver
2024-02-03 23:24:24 +11:00
committed by GitHub
parent 5bc00298c6
commit 2a924ec85b

View File

@ -115,7 +115,7 @@ export function RelatedModelField({
} }
// If the filters have changed, clear the data // If the filters have changed, clear the data
if (_filters != filters) { if (JSON.stringify(_filters) !== JSON.stringify(filters)) {
resetSearch(); resetSearch();
setFilters(_filters); setFilters(_filters);
} }