@firestitch/list 13.0.1 → 13.0.2

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.
@@ -1972,11 +1972,13 @@ class FsRowComponent {
1972
1972
  });
1973
1973
  }
1974
1974
  _initRowActionsUpdate() {
1975
- this.row.actionsUpdate$
1976
- .pipe(takeUntil(this._destroy$))
1977
- .subscribe(() => {
1978
- this.updateRowActions();
1979
- });
1975
+ if (this.row.actionsUpdate$) {
1976
+ this.row.actionsUpdate$
1977
+ .pipe(takeUntil(this._destroy$))
1978
+ .subscribe(() => {
1979
+ this.updateRowActions();
1980
+ });
1981
+ }
1980
1982
  }
1981
1983
  _getRowClasses(rowClass) {
1982
1984
  const classes = [];