Skip to content
This repository has been archived by the owner on Jun 29, 2023. It is now read-only.

Commit

Permalink
fix(flow-item): fix back button icon not showing up (#903)
Browse files Browse the repository at this point in the history
Also updates other calcite-icons to not use `filled` attribute.
  • Loading branch information
jcfranco authored Apr 1, 2020
1 parent c326a50 commit 5290dff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/calcite-flow-item/calcite-flow-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ export class CalciteFlowItem {
class={CSS.backButton}
onClick={backButtonClick}
>
<calcite-icon scale="s" filled icon={icon} />
<calcite-icon scale="s" icon={icon} />
</calcite-action>
) : null;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const createAttributes: () => Attributes = () => [

const action = dedent`
<calcite-action slot="secondary-action" label="click-me" onClick="console.log('clicked');" appearance="clear">
<calcite-icon icon="circle" scale="s" filled style="color: #f689d8;"></calcite-icon>
<calcite-icon icon="circle" scale="s" style="color: #f689d8;"></calcite-icon>
</calcite-action>
`;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const createAttributes: () => Attributes = () => [

const action = dedent`
<calcite-action slot="secondary-action" label="click-me" onClick="console.log('clicked');" appearance="clear">
<calcite-icon icon="circle" scale="s" filled style="color: #f689d8;"></calcite-icon>
<calcite-icon icon="circle" scale="s" style="color: #f689d8;"></calcite-icon>
</calcite-action>
`;

Expand Down

0 comments on commit 5290dff

Please sign in to comment.