Fixed flow name on MenuBar

This commit is contained in:
Lucas Oliveira 2023-06-15 15:33:22 -03:00
commit ef00bdea14

View file

@ -99,8 +99,8 @@ export const MenuBar = ({ flows, tabId }) => {
>
{flows.map((flow, idx) => {
return (
<Link to={"/flow/" + flow.id}>
<DropdownMenuRadioItem value={flow.id}>
<Link to={"/flow/" + flow.id} className="flex w-full items-center">
<DropdownMenuRadioItem value={flow.id} className="flex-1 w-full inline-block truncate break-words mr-2">
{flow.name}
</DropdownMenuRadioItem>
</Link>