Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
6ecd448
implement ui for publish system prompt to hub
shatfield4 Jun 10, 2025
17b4b72
rework ui + add backend to upload to hub
shatfield4 Jun 11, 2025
2f905eb
add success modal view + publish menu item + translations
shatfield4 Jun 12, 2025
74828a6
normalize translations
shatfield4 Jun 12, 2025
c55d8d2
refactor PublishEntityModal + add hook
shatfield4 Jun 12, 2025
2014514
normalize translations
shatfield4 Jun 12, 2025
6ef96e8
Merge branch 'master' into 3975-feat-publish-system-prompt-via-ws-set…
shatfield4 Jun 12, 2025
929d70b
fix ui for success screen
shatfield4 Jun 13, 2025
a414e0d
Merge branch 'master' into 3975-feat-publish-system-prompt-via-ws-set…
timothycarambat Jun 13, 2025
cfe3e98
refactor, auth checks, UI/UX, and naming conventions to be more clear
timothycarambat Jun 13, 2025
fe28e0f
move components to CommunityHub folder + small ui tweak
shatfield4 Jun 13, 2025
a55917d
wip publish agent flows to community hub
shatfield4 Jun 14, 2025
09160c6
rework translations/implement uploading agent flows
shatfield4 Jun 16, 2025
6b5b6ac
normalize/restructure translations
shatfield4 Jun 16, 2025
7aa1640
Merge branch 'master' into publish-agent-flows-to-hub
shatfield4 Jun 16, 2025
2389edc
rename component/add jsdoc for consistency
shatfield4 Jun 16, 2025
8a7c67b
fix en translation
shatfield4 Jun 16, 2025
316cf47
remove comments/duplicate function from merge conf
shatfield4 Jun 16, 2025
b37a238
update styles of publish button in flow builder
shatfield4 Jun 16, 2025
2cc3538
resolve ssr icon issue
shatfield4 Jun 16, 2025
e6b0db3
UI linting
timothycarambat Jun 24, 2025
3a78b34
merge master
timothycarambat Jun 24, 2025
f609fc4
language diff
timothycarambat Jun 24, 2025
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
Prev Previous commit
Next Next commit
resolve ssr icon issue
  • Loading branch information
shatfield4 committed Jun 16, 2025
commit 2cc35387550dfc000697963069270c38ac5e1b60
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useTranslation } from "react-i18next";
import CommunityHub from "@/models/communityHub";
import showToast from "@/utils/toast";
import paths from "@/utils/paths";
import { X, CaretRight } from "@phosphor-icons/react/dist/ssr";
import { X, CaretRight } from "@phosphor-icons/react";
import { BLOCK_INFO } from "@/pages/Admin/AgentBuilder/BlockList";

export default function AgentFlows({ entity }) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useTranslation } from "react-i18next";
import CommunityHub from "@/models/communityHub";
import showToast from "@/utils/toast";
import paths from "@/utils/paths";
import { X } from "@phosphor-icons/react/dist/ssr";
import { X } from "@phosphor-icons/react";

export default function SystemPrompts({ entity }) {
const { t } = useTranslation();
Expand Down