We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03ac066 commit c64d752Copy full SHA for c64d752
1 file changed
packages/pluggableWidgets/calendar-web/src/Calendar.tsx
@@ -29,8 +29,8 @@ export default function MxCalendar(props: CalendarContainerProps): ReactElement
29
30
return (
31
<Fragment>
32
- {props.startDateAttribute && props.startDateAttribute.status !== "available" ? (
33
- <div className="widget-calendar-loading-bar" />
+ {props.startDateAttribute?.status === "loading" ? (
+ <progress className="widget-calendar-loading-bar" />
34
) : (
35
<div className={classNames("widget-calendar", props.class)} style={wrapperStyle}>
36
<DnDCalendar {...calendarProps} {...calendarEvents} />
0 commit comments