Skip to content

Commit 342b659

Browse files
committed
fixing usage in the showcase
1 parent 441813d commit 342b659

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

showcase/app/components/mock/app/header/app-header.gts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,9 @@ export default class MockAppHeaderAppHeader extends Component<MockAppHeaderAppHe
9696
<dd.ToggleIcon @icon="user" @text="user menu" />
9797
<dd.Title @text="Signed In" />
9898
<dd.Description @text="email@domain.com" />
99-
<dd.Interactive @href="#" @text="Account Settings" />
99+
<dd.Interactive @href="#">
100+
Account Settings
101+
</dd.Interactive>
100102
</HdsDropdown>
101103
</:utilityActions>
102104
</HdsAppHeader>

showcase/app/templates/page-components/dropdown.hbs

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -472,10 +472,9 @@
472472
@text="A longer description that could span on multiple lines if the number of characters require more width than the dropdown provides by default."
473473
/>
474474
<Hds::Dropdown::ListItem::Separator />
475-
<Hds::Dropdown::ListItem::Interactive
476-
@route="index"
477-
@text="A longer item that could span multiple lines if the characters surpass a certain length"
478-
/>
475+
<Hds::Dropdown::ListItem::Interactive @route="index">
476+
A longer item that could span multiple lines if the characters surpass a certain length
477+
</Hds::Dropdown::ListItem::Interactive>
479478
</ul>
480479
</div>
481480
</SF.Item>
@@ -490,10 +489,9 @@
490489
@text="A longer description that could span on multiple lines if the number of characters require more width than the dropdown provides by default."
491490
/>
492491
<Hds::Dropdown::ListItem::Separator />
493-
<Hds::Dropdown::ListItem::Interactive
494-
@route="index"
495-
@text="A longer item that could span multiple lines if the characters surpass a certain length"
496-
/>
492+
<Hds::Dropdown::ListItem::Interactive @route="index">
493+
A longer item that could span multiple lines if the characters surpass a certain length
494+
</Hds::Dropdown::ListItem::Interactive>
497495
</ul>
498496
</div>
499497
{{! template-lint-enable no-inline-styles }}

0 commit comments

Comments
 (0)