diff --git a/projects/components/src/table/data/table-cdk-data-source.ts b/projects/components/src/table/data/table-cdk-data-source.ts index 292dd2338..d66c7f642 100644 --- a/projects/components/src/table/data/table-cdk-data-source.ts +++ b/projects/components/src/table/data/table-cdk-data-source.ts @@ -292,6 +292,8 @@ export class TableCdkDataSource implements DataSource { return true; } + // Check if references are equal + // Only checks if the array of columns has been modified. Not the columns themselves. return !isEqual(request.columns, this.cachedData.request.columns); }