Relations many in table view (#5842)
Closes #5924. Adding the "many" side of relations in the table view, and fixing some issues (glitch in Multi record select, cache update after update). --------- Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
This commit is contained in:
@ -1,3 +1,4 @@
|
||||
import deepEqual from 'deep-equal';
|
||||
|
||||
export const isDeeplyEqual = <T>(a: T, b: T) => deepEqual(a, b);
|
||||
export const isDeeplyEqual = <T>(a: T, b: T, options?: { strict: boolean }) =>
|
||||
deepEqual(a, b, options);
|
||||
|
||||
Reference in New Issue
Block a user