From 762cfe39be00dbf84f0acffc991e17b5e75a26d5 Mon Sep 17 00:00:00 2001 From: Shunsuke Toba Date: Thu, 7 Jun 2018 18:29:10 +0900 Subject: [PATCH] fix: typo --- store/experientialLearning.js | 2 +- store/pdca.js | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/store/experientialLearning.js b/store/experientialLearning.js index 9d142cc..8c0a5cd 100644 --- a/store/experientialLearning.js +++ b/store/experientialLearning.js @@ -40,7 +40,7 @@ export const actions = { commit('SET_EXPERIENTAIL_LEARNING', { experientialLearning }) }, addExperientialLearning ({ commit }, { date, content }) { - commit('SET_EXPERIENTAIL_LEARNING', { date, content }) + commit('ADD_EXPERIENTAIL_LEARNING', { date, content }) }, setConcreateExperience ({ commit }, { date, list }) { commit('SET_CONCREATE_EXPERIENCE', { date, list }) diff --git a/store/pdca.js b/store/pdca.js index f88770d..6f63944 100644 --- a/store/pdca.js +++ b/store/pdca.js @@ -36,11 +36,11 @@ export const mutations = { } export const actions = { - setPdca ({ commit }, { date, content }) { - commit('SET_PDCA', { date, content }) + setPdca ({ commit }, pdca) { + commit('SET_PDCA', { pdca }) }, - addPdca ({ commit }, pdca) { - commit('ADD_PDCA', { pdca }) + addPdca ({ commit }, { date, content }) { + commit('ADD_PDCA', { date, content }) }, setPlan ({ commit }, { date, list }) { commit('SET_PLAN', { date, list })