This commit is contained in:
Tom Moor
2020-09-21 19:47:17 -07:00
parent ea69d09562
commit c04d5bdfb0

View File

@ -21,7 +21,7 @@ type Props = {
isDraft: boolean,
isShare: boolean,
readOnly?: boolean,
onSave: ({ publish?: boolean, done?: boolean }) => mixed,
onSave: ({ publish?: boolean, done?: boolean, autosave?: boolean }) => mixed,
innerRef: { current: any },
};
@ -68,7 +68,7 @@ class DocumentEditor extends React.Component<Props> {
}
if (event.key === "s" && event.metaKey) {
event.preventDefault();
this.props.onSave();
this.props.onSave({});
return;
}
};