Merge branch 'db' of personal:logspace-ai/langflow into db
This commit is contained in:
commit
2811bc57c4
2 changed files with 3 additions and 3 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue