meeting url available when it's confirmed
parent
8ebcfbb8d1
commit
f84373cc03
|
@ -41,7 +41,7 @@ export function LocationInfo(props: { calEvent: CalendarEvent; t: TFunction }) {
|
||||||
</a>
|
</a>
|
||||||
}
|
}
|
||||||
extraInfo={
|
extraInfo={
|
||||||
meetingUrl && (
|
meetingUrl && !props.calEvent.requiresConfirmation ? (
|
||||||
<div style={{ color: "#494949", fontWeight: 400, lineHeight: "24px" }}>
|
<div style={{ color: "#494949", fontWeight: 400, lineHeight: "24px" }}>
|
||||||
<>
|
<>
|
||||||
{t("meeting_url")}:{" "}
|
{t("meeting_url")}:{" "}
|
||||||
|
@ -50,7 +50,7 @@ export function LocationInfo(props: { calEvent: CalendarEvent; t: TFunction }) {
|
||||||
</a>
|
</a>
|
||||||
</>
|
</>
|
||||||
</div>
|
</div>
|
||||||
)
|
) : null
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue