From 20d755f3dd5c797413177752884d8589c1f46931 Mon Sep 17 00:00:00 2001 From: hmhealey Date: Fri, 7 Aug 2015 16:24:13 -0400 Subject: Changed post drafts to maintain a list of the names of uploading files instead of just a count --- web/react/stores/post_store.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'web/react/stores') diff --git a/web/react/stores/post_store.jsx b/web/react/stores/post_store.jsx index ea1e75ecb..044e7b300 100644 --- a/web/react/stores/post_store.jsx +++ b/web/react/stores/post_store.jsx @@ -155,7 +155,7 @@ var PostStore = assign({}, EventEmitter.prototype, { clearDraftUploads: function clearDraftUploads() { BrowserStore.actionOnItemsWithPrefix('draft_', function clearUploads(key, value) { if (value) { - value.uploadsInProgress = 0; + value.uploadsInProgress = []; BrowserStore.setItem(key, value); } }); @@ -163,7 +163,7 @@ var PostStore = assign({}, EventEmitter.prototype, { clearCommentDraftUploads: function clearCommentDraftUploads() { BrowserStore.actionOnItemsWithPrefix('comment_draft_', function clearUploads(key, value) { if (value) { - value.uploadsInProgress = 0; + value.uploadsInProgress = []; BrowserStore.setItem(key, value); } }); -- cgit v1.2.3-1-g7c22