Skip to content

Commit

Permalink
Merge pull request #3478 from ag-grid/AG-13975-4
Browse files Browse the repository at this point in the history
AG-13975 Fix shadow not updating
  • Loading branch information
alantreadway authored Feb 5, 2025
2 parents 5063669 + c0304d9 commit 286cb29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ag-charts-community/src/scene/changeDetectable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ function buildCheckDirtyChain(setterFn: Function, opts: SceneChangeDetectionOpti
return function (this: any, value: any) {
const change = setterFn.call(this, value);

if (change !== NO_CHANGE && value?._dirty === true) {
if (value?._dirty === true) {
this.markDirty();
}

Expand Down

0 comments on commit 286cb29

Please # to comment.