From 6654981b58e7a76acde145f5cea7f641b209a1cb Mon Sep 17 00:00:00 2001 From: Jori Lallo Date: Thu, 28 Sep 2017 00:10:42 -0700 Subject: [PATCH] Fixed document edit cache. Closes #265 --- frontend/scenes/Document/Document.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/scenes/Document/Document.js b/frontend/scenes/Document/Document.js index 8657723a..7bdb8023 100644 --- a/frontend/scenes/Document/Document.js +++ b/frontend/scenes/Document/Document.js @@ -161,6 +161,7 @@ type Props = { onSave = async (redirect: boolean = false) => { if (this.document && !this.document.allowSave) return; + this.editCache = null; let document = this.document; if (!document) return;