Skip to content

Commit 54ed579

Browse files
committed
fix spacing and optional tag
1 parent 837a13e commit 54ed579

File tree

2 files changed

+2
-2
lines changed
  • apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/tool-input/components/tools

2 files changed

+2
-2
lines changed

apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/tool-input/components/tools/parameter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export function ParameterWithLabel({
9191
{title}
9292
{isRequired && visibility === 'user-only' && <span className='ml-0.5'>*</span>}
9393
{visibility !== 'user-only' && (
94-
<span className='-ml-[3px] text-[12px] font-normal text-[var(--text-tertiary)]'>
94+
<span className='-ml-[3px] font-normal text-[12px] text-[var(--text-tertiary)]'>
9595
(optional)
9696
</span>
9797
)}

apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/tool-input/components/tools/sub-block-renderer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export function ToolSubBlockRenderer({
8484
const labelSuffix = useMemo(
8585
() =>
8686
isOptionalForUser ? (
87-
<span className='-ml-[3px] text-[12px] font-normal text-[var(--text-tertiary)]'>
87+
<span className='-ml-[3px] font-normal text-[12px] text-[var(--text-tertiary)]'>
8888
(optional)
8989
</span>
9090
) : null,

0 commit comments

Comments
 (0)