|
|
|
@ -57,6 +57,7 @@ class EventEdit extends React.PureComponent<PropsType> {
|
|
|
|
|
location: string;
|
|
|
|
|
description: string;
|
|
|
|
|
journalUid: string;
|
|
|
|
|
|
|
|
|
|
rrule?: RRuleOptions;
|
|
|
|
|
error?: string;
|
|
|
|
|
showDeleteDialog: boolean;
|
|
|
|
@ -71,6 +72,7 @@ class EventEdit extends React.PureComponent<PropsType> {
|
|
|
|
|
location: '',
|
|
|
|
|
description: '',
|
|
|
|
|
timezone: null,
|
|
|
|
|
|
|
|
|
|
journalUid: '',
|
|
|
|
|
showDeleteDialog: false,
|
|
|
|
|
};
|
|
|
|
@ -203,6 +205,7 @@ class EventEdit extends React.PureComponent<PropsType> {
|
|
|
|
|
:
|
|
|
|
|
new EventType()
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
event.uid = this.state.uid;
|
|
|
|
|
event.summary = this.state.title;
|
|
|
|
|
event.startDate = startDate;
|
|
|
|
@ -404,7 +407,6 @@ class EventEdit extends React.PureComponent<PropsType> {
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ConfirmationDialog
|
|
|
|
|
title="Delete Confirmation"
|
|
|
|
|
labelOk="Delete"
|
|
|
|
|