Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(frontend): Update buttons to edit agents in Monitor #8687

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,11 @@ export const FlowInfo: React.FC<
</DropdownMenu>
)}
<Link
className={buttonVariants({ variant: "outline" })}
className={buttonVariants({ variant: "default" })}
href={`/build?flowID=${flow.id}`}
>
<Pencil2Icon />
<Pencil2Icon className="mr-2" />
Open in Builder
</Link>
<Button
variant="outline"
Expand All @@ -126,7 +127,7 @@ export const FlowInfo: React.FC<
)
}
>
<ExitIcon />
<ExitIcon className="mr-2" /> Export
</Button>
<Button variant="outline" onClick={() => setIsDeleteModalOpen(true)}>
<Trash2Icon className="h-full" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ export const FlowRunInfo: React.FC<
</Button>
)}
<Link
className={buttonVariants({ variant: "outline" })}
className={buttonVariants({ variant: "default" })}
href={`/build?flowID=${flow.id}`}
>
<Pencil2Icon className="mr-2" /> Edit Agent
<Pencil2Icon className="mr-2" /> Open in Builder
</Link>
</div>
</CardHeader>
Expand Down
Loading