I have a stackblitz project here: https://stackblitz.com/edit/angular-hlndpc-g6dfgj?file=src%2Fmain.ts
The values update at random to simulate telemetry coming in remotely. Some values will have their statuses changed while others will not. My aim is to only re-render the rows that have their values updated and not the others.
I have tried using immutable mode, however the templates are always re-initialised for every row whenever a change comes through, regardless of whether the values were actually changed. Is this possible to do without a deep compare of all the current and previous values to determine which ones have changed?