Merge branch 'db' of personal:logspace-ai/langflow into db

This commit is contained in:
anovazzi1 2023-06-15 15:36:22 -03:00
commit 2811bc57c4
2 changed files with 3 additions and 3 deletions

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>

View file

@ -133,7 +133,7 @@ export default function ExtraSidebar() {
>
<Save
className={
"w-5 h-5" + (isPending ? " text-muted-foreground" : " ")
"w-5 h-5" + (isPending ? " " : " text-muted-foreground")
}
></Save>
</button>