Skip to content

Commit

Permalink
fix(hub): align dropdown menu items to the left
Browse files Browse the repository at this point in the history
ref: MANAGER-14935

Signed-off-by: Jacques Larique <[email protected]>
  • Loading branch information
Jacques Larique authored and JacquesLarique committed Oct 24, 2024
1 parent 2a1d78d commit f6afc19
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,10 @@ export default function ServicesActions({
{items.map((item, index) => {
const { disabled, external, ...link } = item;
return (
<div key={`service_action_${service.domain}_${index}`}>
<div
className="text-left"
key={`service_action_${service.domain}_${index}`}
>
{index > 0 && <OsdsDivider size={ODS_DIVIDER_SIZE.four} />}
<OsdsLink
color={ODS_THEME_COLOR_INTENT.primary}
Expand Down

0 comments on commit f6afc19

Please sign in to comment.