Skip to content

Commit 60e3ee3

Browse files
Merge remote-tracking branch 'upstream/master'
2 parents 93d9745 + f674ae2 commit 60e3ee3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-lightning-design-system",
3-
"version": "5.8.0",
3+
"version": "5.9.0",
44
"description": "Salesforce Lightning Design System components built with React",
55
"main": "lib/scripts/index.js",
66
"module": "module/scripts/index.js",

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)