@descope/web-components-ui 1.0.217 → 1.0.218

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.
@@ -4854,7 +4854,7 @@ const ComboBoxMixin = (superclass) =>
4854
4854
  class ComboBoxMixinClass extends superclass {
4855
4855
  // eslint-disable-next-line class-methods-use-this
4856
4856
  #renderItem = ({ displayName, value, label }) => {
4857
- return `<span data-name="${label}" data-id="${value}">${displayName}</span>`;
4857
+ return `<span data-name="${label}" data-id="${value}">${displayName || label}</span>`;
4858
4858
  };
4859
4859
 
4860
4860
  #data;