@messaia/cdk 21.1.0-rc.16 → 21.1.0-rc.17
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.
package/fesm2022/messaia-cdk.mjs
CHANGED
|
@@ -22098,6 +22098,10 @@ class VdChipsComponent extends AbstractMatFormField {
|
|
|
22098
22098
|
this.dataSourceSubscription?.unsubscribe();
|
|
22099
22099
|
this.dataSourceSubscription = this.dataSource?.connect().subscribe();
|
|
22100
22100
|
}
|
|
22101
|
+
/* Reload the data source if it is already connected */
|
|
22102
|
+
else if (this.dataSource?.isConnected) {
|
|
22103
|
+
this.dataSource?.reload();
|
|
22104
|
+
}
|
|
22101
22105
|
/* Trigger change detection */
|
|
22102
22106
|
this.changeDetectorRef.detectChanges();
|
|
22103
22107
|
}
|