Skip to content
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
6 changes: 4 additions & 2 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,12 @@
"@tanstack/react-router": "^1.102.0",
"@tanstack/react-virtual": "^3.13.12",
"@uiw/react-markdown-preview": "^5.1.3",
"@xyflow/react": "^12.8.4",
"caniuse-lite": "^1.0.30001696",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"docx-preview": "^0.3.5",
"date-fns": "^4.1.0",
"docx-preview": "^0.3.5",
"dompurify": "^3.2.6",
"hono": "^4.6.15",
"jszip": "^3.10.1",
Expand All @@ -44,6 +45,7 @@
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-icons": "^5.5.0",
"react-is": "^19.1.1",
"react-json-view": "^1.21.3",
"react-zoom-pan-pinch": "^3.7.0",
"recharts": "^3.1.0",
Expand Down Expand Up @@ -78,4 +80,4 @@
"vite-plugin-svgr": "^4.3.0",
"vitest": "^3.1.4"
}
}
}
3 changes: 3 additions & 0 deletions frontend/src/assets/arrow-left.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions frontend/src/assets/bot-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions frontend/src/assets/check-circle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions frontend/src/assets/file-up.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions frontend/src/assets/grid-dashboard-01.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions frontend/src/assets/import-dsl.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions frontend/src/assets/play.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions frontend/src/assets/plus.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions frontend/src/assets/sitemap.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions frontend/src/assets/vector.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions frontend/src/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import {
Key,
BarChart3,
BookOpen,
Workflow,
} from "lucide-react"
import { useState, useEffect } from "react"
import HistoryModal from "@/components/HistoryModal"
Expand Down Expand Up @@ -170,6 +171,26 @@ export const Sidebar = ({
</Tooltip>
</div>

<Link
to="/workflow"
className={cn(
"flex w-8 h-8 items-center justify-center hover:bg-[#D8DFE680] dark:hover:bg-gray-700 rounded-md mt-[10px]",
location.pathname.includes("/workflow") &&
"bg-[#D8DFE680] dark:bg-gray-700",
)}
>
<Tooltip>
<TooltipTrigger asChild>
<Workflow
stroke="#384049"
size={18}
className="dark:stroke-[#F1F3F4]"
/>
</TooltipTrigger>
<Tip side="right" info="Workflow Builder" />
</Tooltip>
</Link>

{/* TODO: Add appropriate Link destination and Tooltip info for the Bot icon */}
{isAgentMode && (
<Link
Expand Down
Loading