Skip to content

Commit cb4997d

Browse files
cristipufuclaude
andcommitted
feat: wrap long JSON in I/O view, bump v0.0.30
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 5acf7a5 commit cb4997d

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath-dev"
3-
version = "0.0.29"
3+
version = "0.0.30"
44
description = "UiPath Developer Console"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.11"

src/uipath/dev/server/frontend/src/components/runs/RunDetailsPanel.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ function IOView({ run }: { run: RunSummary }) {
330330
{/* Input */}
331331
<DataSection title="Input" color="var(--success)" copyText={JSON.stringify(run.input_data, null, 2)}>
332332
<pre
333-
className="p-3 rounded-lg text-xs overflow-x-auto font-mono"
333+
className="p-3 rounded-lg text-xs font-mono whitespace-pre-wrap break-words"
334334
style={{ background: "var(--bg-secondary)", color: "var(--text-primary)", border: "1px solid var(--border)" }}
335335
>
336336
{JSON.stringify(run.input_data, null, 2)}
@@ -345,7 +345,7 @@ function IOView({ run }: { run: RunSummary }) {
345345
copyText={typeof run.output_data === "string" ? run.output_data : JSON.stringify(run.output_data, null, 2)}
346346
>
347347
<pre
348-
className="p-3 rounded-lg text-xs overflow-x-auto font-mono"
348+
className="p-3 rounded-lg text-xs font-mono whitespace-pre-wrap break-words"
349349
style={{ background: "var(--bg-secondary)", color: "var(--text-primary)", border: "1px solid var(--border)" }}
350350
>
351351
{typeof run.output_data === "string"

src/uipath/dev/server/static/assets/index-Y33RVhpZ.js renamed to src/uipath/dev/server/static/assets/index-CGuWKmVx.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/uipath/dev/server/static/assets/index-CGY8Db_S.css renamed to src/uipath/dev/server/static/assets/index-DMayzmDM.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/uipath/dev/server/static/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66
<title>UiPath Developer Console</title>
77
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
8-
<script type="module" crossorigin src="/assets/index-Y33RVhpZ.js"></script>
9-
<link rel="stylesheet" crossorigin href="/assets/index-CGY8Db_S.css">
8+
<script type="module" crossorigin src="/assets/index-CGuWKmVx.js"></script>
9+
<link rel="stylesheet" crossorigin href="/assets/index-DMayzmDM.css">
1010
</head>
1111
<body>
1212
<div id="root"></div>

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)