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>
5 lines
144 B
TypeScript
5 lines
144 B
TypeScript
import deepEqual from 'deep-equal';
|
|
|
|
export const isDeeplyEqual = <T>(a: T, b: T, options?: { strict: boolean }) =>
|
|
deepEqual(a, b, options);
|