Skip to content

Commit

Permalink
fix badge attention type
Browse files Browse the repository at this point in the history
  • Loading branch information
JesmoDev committed Aug 22, 2024
1 parent 03c3aca commit 8484996
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/uui-badge/lib/uui-badge.element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ export class UUIBadgeElement extends LitElement {

/**
* Bring attention to this badge by applying a bounce animation.
* @type Boolean
* @type boolean
* @attr
* @default false
*/
@property({ type: Boolean, reflect: true })
attention = false;
attention: boolean = false;

render() {
return html` <slot></slot> `;
Expand Down

0 comments on commit 8484996

Please sign in to comment.