igniteui-angular 19.2.2 → 19.2.4
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.
|
@@ -19907,7 +19907,7 @@ class IgxTextHighlightDirective {
|
|
|
19907
19907
|
*/
|
|
19908
19908
|
activateIfNecessary() {
|
|
19909
19909
|
const group = this.service.highlightGroupsMap.get(this.groupName);
|
|
19910
|
-
if (group.index >= 0 && group.column === this.column && group.row === this.row && compareMaps(this.metadata, group.metadata)) {
|
|
19910
|
+
if (group && group.index >= 0 && group.column === this.column && group.row === this.row && compareMaps(this.metadata, group.metadata)) {
|
|
19911
19911
|
this.activate(group.index);
|
|
19912
19912
|
}
|
|
19913
19913
|
}
|