Skip to content

Commit 7abd454

Browse files
alencarlucasdplewis
authored andcommitted
fix: AppsMenu broken layout when app name is too long (#1164)
1 parent c17c123 commit 7abd454

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Sidebar/AppsMenu.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ let AppsMenu = ({ apps, current, height, onSelect }) => (
2424
}
2525
return (
2626
<Link to={{ pathname: html`/apps/${app.slug}/browser` }} key={app.slug} className={styles.menuRow} onClick={onSelect.bind(null, current.slug)}>
27-
{app.name}
27+
<span>{app.name}</span>
2828
<AppBadge production={app.production} />
2929
</Link>
3030
);

0 commit comments

Comments
 (0)