Skip to content

Commit

Permalink
fix(flow-item): Position back tooltip above (#5688)
Browse files Browse the repository at this point in the history
fix(flow-item): Position back tooltip above by default.
  • Loading branch information
driskull committed Nov 10, 2022
1 parent 2e2621d commit bb67992
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/flow-item/flow-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,12 @@ export class FlowItem implements InteractiveComponent {
<slot />
</calcite-panel>
{backButtonEl ? (
<calcite-tooltip label={label} placement="auto" referenceElement={backButtonEl}>
<calcite-tooltip
label={label}
overlayPositioning="fixed"
placement="top"
referenceElement={backButtonEl}
>
{label}
</calcite-tooltip>
) : null}
Expand Down

0 comments on commit bb67992

Please sign in to comment.