Skip to content

Commit

Permalink
fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
didoo committed Jun 24, 2024
1 parent 7a6f179 commit 7a2f505
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
7 changes: 6 additions & 1 deletion showcase/app/templates/components/accordion.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,12 @@

{{#let (array false true) as |booleans|}}
{{#each booleans as |bool|}}
<Shw::Flex @label="parentContainsInteractive={{bool}}" @gap="2rem" {{style justifyContent="space-between"}} as |SF|>
<Shw::Flex
@label="parentContainsInteractive={{bool}}"
@gap="2rem"
{{style justifyContent="space-between"}}
as |SF|
>
{{#each @model.STATES as |state|}}
<SF.Item @label={{state}}>
<div class="shw-component-accordion-standalone-button">
Expand Down
4 changes: 1 addition & 3 deletions showcase/app/templates/components/form/super-select.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -1221,9 +1221,7 @@
>
<Shw::Placeholder @text="Second group - Generic content" @height="40px" />
</Hds::Form::SuperSelect::OptionGroup>
<Hds::Form::SuperSelect::OptionGroup
@group={{hash groupName="Title for third group (with options)"}}
>
<Hds::Form::SuperSelect::OptionGroup @group={{hash groupName="Title for third group (with options)"}}>
{{! template-lint-disable require-context-role }}
<li class="ember-power-select-option" role="option" mock-state-value="hover">
Option 1
Expand Down
7 changes: 6 additions & 1 deletion showcase/app/templates/components/link/inline.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,12 @@

<Shw::Text::H2>Content</Shw::Text::H2>

<Shw::Grid @columns={{3}} @gap="1rem 2rem" {{style width="fit-content" grid-template-columns="repeat(3, auto)"}} as |SG|>
<Shw::Grid
@columns={{3}}
@gap="1rem 2rem"
{{style width="fit-content" grid-template-columns="repeat(3, auto)"}}
as |SG|
>
<SG.Item @label="Only text">
<div class="hds-typography-body-300">
<Hds::Link::Inline @color="primary" @href="#">Lorem ipsum dolor</Hds::Link::Inline>
Expand Down

0 comments on commit 7a2f505

Please sign in to comment.