We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abf3224 commit 791c448Copy full SHA for 791c448
packages/uui-button/lib/uui-button.element.ts
@@ -246,7 +246,7 @@ export class UUIButtonElement extends UUIFormControlMixin(
246
<a
247
id="button"
248
aria-label=${ifDefined(this.label)}
249
- title=${ifDefined(this.title)}
+ title=${this.title}
250
href=${ifDefined(!this.disabled ? this.href : undefined)}
251
target=${ifDefined(this.target || undefined)}
252
rel=${ifDefined(
@@ -265,7 +265,7 @@ export class UUIButtonElement extends UUIFormControlMixin(
265
type=${this.type}
266
?disabled=${this.disabled}
267
268
- title=${ifDefined(this.title)}>
+ title=${this.title}>
269
${this.renderState()} ${this.renderLabel()}
270
<slot name="extra"></slot>
271
</button>
0 commit comments