Skip to content

Commit

Permalink
fix(InputField): edit TW classes for readOnly
Browse files Browse the repository at this point in the history
  • Loading branch information
sarkaaa committed Jul 30, 2024
1 parent 296b8fb commit 61793ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/orbit-components/src/InputField/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ const InputField = React.forwardRef<HTMLInputElement, Props>((props, ref) => {
{...dataAttrs}
/>
{suffix && <Suffix disabled={disabled}>{suffix}</Suffix>}
<FakeInput error={error} disabled={disabled} readOnly={readOnly} />
<FakeInput error={error} disabled={disabled} />
</div>
{!insideInputGroup && hasTooltip && (
<ErrorFormTooltip
Expand Down

0 comments on commit 61793ee

Please sign in to comment.