lenrix icon indicating copy to clipboard operation
lenrix copied to clipboard

Enable custom change detection strategy

Open couzic opened this issue 6 years ago • 0 comments

store.changeDetectionStategies({
    myValue: (previousValue, nextValue) => previousValue.myField === nextValue.myField
})

Since this case is so common:

store.changeDetectionSelectors({
    birthDate: _  => _.getTime()
})

couzic avatar Jun 15 '18 14:06 couzic