File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -246,7 +246,7 @@ export class UUIButtonElement extends UUIFormControlMixin(
246246 <a
247247 id= "button"
248248 aria-label = ${ ifDefined ( this . label ) }
249- title= ${ this . title }
249+ title= ${ ifDefined ( this . title === '' ? undefined : this . title ) }
250250 href= ${ ifDefined ( ! this . disabled ? this . href : undefined ) }
251251 target= ${ ifDefined ( this . target || undefined ) }
252252 rel= ${ ifDefined (
@@ -265,7 +265,7 @@ export class UUIButtonElement extends UUIFormControlMixin(
265265 type = ${ this . type }
266266 ?dis abled= ${ this . disabled }
267267 aria- label= ${ ifDefined ( this . label ) }
268- title= ${ this . title } >
268+ title= ${ ifDefined ( this . title === '' ? undefined : this . title ) } >
269269 ${ this . renderState ( ) } ${ this . renderLabel ( ) }
270270 <slot name= "extra" > </ slot>
271271 </ butto n>
You can’t perform that action at this time.
0 commit comments