diff --git a/pyproject.toml b/pyproject.toml index 815a2e4..13f6b6f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "uipath-dev" -version = "0.0.45" +version = "0.0.46" description = "UiPath Developer Console" readme = { file = "README.md", content-type = "text/markdown" } requires-python = ">=3.11" diff --git a/src/uipath/dev/server/frontend/src/components/chat/ChatInput.tsx b/src/uipath/dev/server/frontend/src/components/chat/ChatInput.tsx index 870d786..6e125dd 100644 --- a/src/uipath/dev/server/frontend/src/components/chat/ChatInput.tsx +++ b/src/uipath/dev/server/frontend/src/components/chat/ChatInput.tsx @@ -36,7 +36,7 @@ export default function ChatInput({ onSend, disabled, placeholder }: Props) { onKeyDown={handleKeyDown} disabled={disabled} placeholder={placeholder ?? "Message..."} - className="flex-1 bg-transparent text-xs py-1 focus:outline-none disabled:opacity-40 placeholder:text-[var(--text-muted)]" + className="flex-1 bg-transparent text-sm py-1 focus:outline-none disabled:opacity-40 placeholder:text-[var(--text-muted)]" style={{ color: "var(--text-primary)" }} /> diff --git a/src/uipath/dev/server/frontend/src/components/runs/RunDetailsPanel.tsx b/src/uipath/dev/server/frontend/src/components/runs/RunDetailsPanel.tsx index 76f6c00..72f2212 100644 --- a/src/uipath/dev/server/frontend/src/components/runs/RunDetailsPanel.tsx +++ b/src/uipath/dev/server/frontend/src/components/runs/RunDetailsPanel.tsx @@ -197,7 +197,7 @@ export default function RunDetailsPanel({ run, ws }: Props) {