Skip to content

Commit 934307c

Browse files
samejrericallam
authored andcommitted
Details panel imrprovements
1 parent 24b5e51 commit 934307c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.prompts.$promptSlug

apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.prompts.$promptSlug/route.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -958,7 +958,7 @@ function DetailsTab({
958958
<Property.Item>
959959
<Property.Label>Slug</Property.Label>
960960
<Property.Value>
961-
<code className="text-xs">{prompt.slug}</code>
961+
<code className="text-sm">{prompt.slug}</code>
962962
</Property.Value>
963963
</Property.Item>
964964
{prompt.description && (
@@ -975,7 +975,7 @@ function DetailsTab({
975975
)}
976976
{prompt.defaultConfig && (
977977
<Property.Item>
978-
<Property.Label>Config</Property.Label>
978+
<Property.Label className="mb-1.5">Config</Property.Label>
979979
<Property.Value>
980980
<CodeBlock
981981
code={JSON.stringify(prompt.defaultConfig, null, 2)}
@@ -989,7 +989,7 @@ function DetailsTab({
989989
<Property.Item>
990990
<Property.Label>Source</Property.Label>
991991
<Property.Value>
992-
<code className="text-xs">
992+
<code className="text-sm">
993993
{prompt.filePath}
994994
{prompt.exportName ? ` (${prompt.exportName})` : ""}
995995
</code>

0 commit comments

Comments
 (0)