about summary refs log tree commit diff
path: root/app/javascript/mastodon/actions/modal.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/mastodon/actions/modal.js')
-rw-r--r--app/javascript/mastodon/actions/modal.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/mastodon/actions/modal.js b/app/javascript/mastodon/actions/modal.js
index 615cd6bfe..80e15c28e 100644
--- a/app/javascript/mastodon/actions/modal.js
+++ b/app/javascript/mastodon/actions/modal.js
@@ -5,12 +5,12 @@ export function openModal(type, props) {
   return {
     type: MODAL_OPEN,
     modalType: type,
-    modalProps: props
+    modalProps: props,
   };
 };
 
 export function closeModal() {
   return {
-    type: MODAL_CLOSE
+    type: MODAL_CLOSE,
   };
 };