hds-web 1.30.4 → 1.30.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hds-web",
3
- "version": "1.30.4",
3
+ "version": "1.30.5",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -80,7 +80,7 @@ export default function EventScheduleCard(props) {
80
80
  {props.title}
81
81
  </Typography>}
82
82
  {
83
- (props.eventDate || props.eventTime || props.eventLocation || props.social)
83
+ (props.eventDate || props.eventTime || props.eventLocation || props.social)
84
84
  &&
85
85
  scheduleSection(props)
86
86
  }
@@ -96,18 +96,20 @@ export default function EventScheduleCard(props) {
96
96
  className='text-neutral-700 pb-6'>
97
97
  {props.description}
98
98
  </Typography>}
99
- <div className="pt-6 border-t border-neutral-200 gap-8 flex flex-wrap">
100
- {props.speakers && props.speakers.map((value, index) => (
101
- <div key={index}>
102
- {speakerSection(
103
- value.speakerName,
104
- value.speakerDesignation,
105
- value.speakerImgUrl
106
- )}
107
- </div>
108
- ))}
99
+ {props.speakers &&
100
+ <div className="pt-6 border-t border-neutral-200 gap-8 flex flex-wrap">
101
+ {props.speakers && props.speakers.map((value, index) => (
102
+ <div key={index}>
103
+ {speakerSection(
104
+ value.speakerName,
105
+ value.speakerDesignation,
106
+ value.speakerImgUrl
107
+ )}
108
+ </div>
109
+ ))}
109
110
 
110
- </div>
111
+ </div>
112
+ }
111
113
  </div>
112
114
  </>
113
115
  )