Skip to content

Commit

Permalink
style(esl-share): change order share button attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
dshovchko committed Mar 7, 2023
1 parent 63e1da4 commit f9011a6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/modules/esl-share/core/esl-share-button.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,12 @@ export class ESLShareButton extends ESLBaseElement {
@attr() public action: string;
@attr() public link: string;
@attr() public name: string;
@jsonAttr({dataAttr: true}) public additional: Record<string, any>;

@attr({dataAttr: true}) public shareUrl: string;
@attr({dataAttr: true}) public shareTitle: string;

@jsonAttr({dataAttr: true}) public additional: Record<string, any>;

@boolAttr() public unavailable: boolean;

protected get actionInstance(): ESLShareBaseAction | null {
Expand Down

0 comments on commit f9011a6

Please sign in to comment.