@c8y/ngx-components 1018.0.23 → 1018.0.28

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.
@@ -80,6 +80,11 @@ class ActivityLogComponent {
80
80
  async refresh() {
81
81
  this.isLoading = true;
82
82
  this.archives = await this.ecosystemService.listArchives(this.application.id);
83
+ if (this.application.manifest?.package === 'blueprint') {
84
+ // filter out entries without description because using them as active may break application's
85
+ // manifest (changing isPackage property of deployed app to 'true')
86
+ this.archives = this.archives.filter((archive) => !!archive.description);
87
+ }
83
88
  this.archives.sort((a, b) => {
84
89
  return new Date(b.created) - new Date(a.created);
85
90
  });