@alfresco/adf-core 8.4.0-20233595538 → 8.4.0-20234340352

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13749,7 +13749,8 @@ class DataTableCellComponent {
13749
13749
  this.latestValue = null;
13750
13750
  // Listen to locale changes and re-compute the title with the latest value
13751
13751
  effect(() => {
13752
- this.userPreferencesService.localeSignal();
13752
+ // Read the signal value to track changes
13753
+ this.userPreferencesService.localeSignal?.();
13753
13754
  // When locale changes, re-compute title using the stored latest value
13754
13755
  this.recomputeTitle();
13755
13756
  });