@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.
package/dist/index.esm.js CHANGED
@@ -3166,7 +3166,7 @@ const ComboBoxMixin = (superclass) =>
3166
3166
  class ComboBoxMixinClass extends superclass {
3167
3167
  // eslint-disable-next-line class-methods-use-this
3168
3168
  #renderItem = ({ displayName, value, label }) => {
3169
- return `<span data-name="${label}" data-id="${value}">${displayName}</span>`;
3169
+ return `<span data-name="${label}" data-id="${value}">${displayName || label}</span>`;
3170
3170
  };
3171
3171
 
3172
3172
  #data;