Skip to content

Commit

Permalink
fixed text too wide
Browse files Browse the repository at this point in the history
  • Loading branch information
jmlord committed Jan 21, 2025
1 parent b21e3de commit 2921665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/form/ScriptInput.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ export default function ScriptInput({
onKeyDown={(e) => {
if (e.key === "Enter" || e.ctrlKey) updateValue(e);
}}
slotProps={{ input: { style: small ? smallPadding() : null } }}
slotProps={{ htmlInput: { style: small ? smallPadding() : null } }}
sx={{ width: small ? 220 : 328 }}
/>
);
Expand Down

0 comments on commit 2921665

Please sign in to comment.