Skip to content

Commit 68de82c

Browse files
authored
Merge branch 'master' into theme-changes-fix
2 parents 0e9085e + 1e6fe57 commit 68de82c

File tree

21 files changed

+817
-434
lines changed

21 files changed

+817
-434
lines changed

assets/img/GoldPhone.png

36.6 KB
Loading

assets/img/MediaCoLogo.png

4.16 KB
Loading

assets/img/SDKDevicesImage.png

120 KB
Loading

assets/img/SilverPhone.png

33 KB
Loading

assets/img/SuccessIcon.png

2.17 KB
Loading

assets/img/UserProfile.png

4.76 KB
Loading

assets/img/WhitePhone.png

30.6 KB
Loading

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/react-sdk-components/src/components/field/RadioButtons/RadioButtons.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,10 @@ export default function RadioButtons(props: RadioButtonsProps) {
108108
return (
109109
<div>
110110
<h4 style={{ marginTop: 0, marginBottom: 0 }}>{label}</h4>
111-
<div style={{ display: 'grid', gridTemplateColumns: 'repeat(auto-fit, minmax(min(100%, 40ch), 1fr))', gridAutoRows: '1fr', gap: '0.5rem' }}>
111+
<div
112+
className='selectable-card-grid-style'
113+
style={{ display: 'grid', gridTemplateColumns: 'repeat(auto-fit, minmax(min(100%, 40ch), 1fr))', gridAutoRows: '1fr', gap: '0.5rem' }}
114+
>
112115
<SelectableCard
113116
hideFieldLabels={hideFieldLabels}
114117
additionalProps={additionalProps}

packages/react-sdk-components/src/components/field/SelectableCard/SelectableCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export default function SelectableCard(props) {
7474
}
7575

7676
const component = (
77-
<div style={{ paddingTop: '15px' }}>
77+
<div key={item[recordKey]} style={{ paddingTop: '15px' }}>
7878
<Card className={className} style={{ display: 'flex', flexDirection: 'column', height: '100%' }} data-testid={testId}>
7979
<CardContent
8080
style={{

0 commit comments

Comments
 (0)