@po-ui/ng-components 19.3.1 → 19.4.0

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.
@@ -38681,7 +38681,7 @@ class PoMultiselectComponent extends PoMultiselectBaseComponent {
38681
38681
  closeTag(value, event) {
38682
38682
  let index;
38683
38683
  this.enterCloseTag = true;
38684
- if (!value || (typeof value === 'string' && value.includes('+'))) {
38684
+ if (value === null || value === undefined || (typeof value === 'string' && value.includes('+'))) {
38685
38685
  index = null;
38686
38686
  const itemsNotInVisibleTags = this.selectedOptions.filter(option => !this.visibleTags.includes(option));
38687
38687
  for (const option of this.visibleTags) {