forked from vergnet/application-amicale
Fixed crash when no event to display
This commit is contained in:
parent
d17a52307f
commit
30c1c9c5bf
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ import PlanningEventManager from "../utils/PlanningEventManager";
|
|||
|
||||
function PreviewEventDashboardItem(props) {
|
||||
const {colors} = props.theme;
|
||||
const isEmpty = PlanningEventManager.isDescriptionEmpty(props.event['description']);
|
||||
const isEmpty = props.event === undefined ? true : PlanningEventManager.isDescriptionEmpty(props.event['description']);
|
||||
if (props.event !== undefined && props.event !== null) {
|
||||
const hasImage = props.event['logo'] !== '' && props.event['logo'] !== null;
|
||||
const getImage = () => <Avatar.Image
|
||||
|
|
Loading…
Reference in a new issue