ngx-axis-appforge 1.0.7 → 1.0.8

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.
@@ -1191,7 +1191,7 @@ class Base {
1191
1191
  triggeEvents(trigger, tempDataSource, triggeEvents, scope) {
1192
1192
  scope ??= this.scope ?? undefined;
1193
1193
  const te = triggeEvents ?? this.options.triggeEvents();
1194
- if (te && te[trigger]) {
1194
+ if (te && te[trigger]?.length) {
1195
1195
  return merge(...te[trigger].filter(e => !(scope?.snapshotField(e, "disabled", tempDataSource) ?? e.disabled)).map(e => {
1196
1196
  if (scope) {
1197
1197
  e = scope.snapshotOptions(e, tempDataSource);