Skip to content

Commit

Permalink
fix(DiscordReply): add missing attributes
Browse files Browse the repository at this point in the history
resolves #500
  • Loading branch information
favna committed Nov 2, 2024
1 parent 4352655 commit 38ee6e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/core/src/components/discord-reply/DiscordReply.ts
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ export class DiscordReply extends LitElement implements LightTheme {
/**
* The message author's primary role color. Can be any [CSS color value](https://www.w3schools.com/cssref/css_colors_legal.asp).
*/
@property()
@property({ attribute: 'role-color' })
public accessor roleColor: string;

/**
Expand All @@ -329,13 +329,13 @@ export class DiscordReply extends LitElement implements LightTheme {
/**
* The clan icon of the author, which comes from the enabled clan tag
*/
@property()
@property({ attribute: 'clan-icon' })
public accessor clanIcon: string;

/**
* The clan name of the author, which comes from the enabled clan tag
*/
@property()
@property({ attribute: 'clan-tag' })
public accessor clanTag: string;

/**
Expand Down

0 comments on commit 38ee6e8

Please sign in to comment.