This commit is contained in:
konnorrogers
2024-09-27 10:36:34 -04:00
parent 312225e8c3
commit 43506918e1

View File

@@ -874,8 +874,8 @@ export default class WaSelect extends WebAwesomeFormAssociatedElement {
@blur=${this.handleBlur}
/>
<!-- Tags need to wait for first hydration before populating. -->
${this.multiple && this.updated ? html`<div part="tags" class="select__tags">${this.tags}</div>` : ''}
<!-- Tags need to wait for first hydration before populating otherwise it will create a hydration mismatch. -->
${this.multiple && this.hasUpdated ? html`<div part="tags" class="select__tags">${this.tags}</div>` : ''}
<input
class="select__value-input"