Skip to content

Commit

Permalink
[#227] Fix bootstrap 5 classes in horizontal input label
Browse files Browse the repository at this point in the history
  • Loading branch information
palagdan committed Oct 8, 2024
1 parent eb126a2 commit c214fa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/HorizontalInput.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const HorizontalInput = forwardRef(function HorizontalInputWithRef(props, ref) {

const renderLabel = () => {
return props.label ? (
<FormLabel column lg={props.labelWidth} className="font-weight-bold text-lg-right align-self-center">
<FormLabel column lg={props.labelWidth} className="fw-bold text-lg-end align-self-center">
{props.label}
</FormLabel>
) : null;
Expand Down

0 comments on commit c214fa7

Please sign in to comment.