Tusooa Zhu 3 년 전
부모
커밋
3b4afdf567
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/modules/media_viewer.js

+ 2 - 2
src/modules/media_viewer.js

@@ -20,7 +20,7 @@ const mediaViewer = {
     }
   },
   actions: {
-    setMedia ({ commit, dispatch }, attachments) {
+    setMedia ({ commit }, attachments) {
       const media = attachments.filter(attachment => {
         const type = fileTypeService.fileType(attachment.mimetype)
         return supportedTypes.has(type)
@@ -31,7 +31,7 @@ const mediaViewer = {
       const index = state.media.indexOf(current)
       commit('setCurrentMedia', index || 0)
     },
-    closeMediaViewer ({ commit, dispatch }) {
+    closeMediaViewer ({ commit }) {
       commit('close')
     }
   }