@crowdfarming/oliva-ds 1.28.1 → 1.28.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.
@@ -4827,7 +4827,7 @@ class MenuItemComponent {
4827
4827
  hasChildren = computed(() => this.children().length > 0);
4828
4828
  hasTag = computed(() => this.tagLabel().trim().length > 0);
4829
4829
  clicked = output();
4830
- computedIcon = computed(() => this.selected() ? `${this.icon().replace('regular', 'fill')}` : this.icon());
4830
+ computedIcon = computed(() => this.selected() ? `${this.icon()?.replace('regular', 'fill')}` : this.icon());
4831
4831
  handleClick() {
4832
4832
  if (!this.disabled()) {
4833
4833
  this.clicked.emit();