Skip to content

Commit 0675434

Browse files
committed
Merge branch 'master' of github.com:mashmatrix/react-lightning-design-system
2 parents 23b217d + d1d0ded commit 0675434

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/scripts/CheckboxGroup.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@ export const CheckboxGroup = createFC<
112112
onChange={onChange}
113113
>
114114
<legend className='slds-form-element__label'>
115-
{label}
116115
{required ? <abbr className='slds-required'>*</abbr> : undefined}
116+
{label}
117117
</legend>
118118
<div className='slds-form-element__control' ref={controlElRef}>
119119
<CheckboxGroupContext.Provider value={grpCtx}>

src/scripts/FormElement.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ export const FormElement = createFC<
100100
htmlFor={id}
101101
onClick={id ? undefined : onClickLabel}
102102
>
103-
{label}
104103
{required ? <abbr className='slds-required'>*</abbr> : undefined}
104+
{label}
105105
</label>
106106
) : null}
107107
{tooltip ? (

src/scripts/RadioGroup.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ export const RadioGroup = createFC<RadioGroupProps, { isFormElement: boolean }>(
9090
{...rprops}
9191
>
9292
<legend className='slds-form-element__label'>
93-
{label}
9493
{required ? <abbr className='slds-required'>*</abbr> : undefined}
94+
{label}
9595
</legend>
9696
<div className='slds-form-element__control'>
9797
<RadioGroupContext.Provider value={grpCtx}>

0 commit comments

Comments
 (0)