From 3784d49694c8ca62a2aab382fcdad98650a791df Mon Sep 17 00:00:00 2001 From: Seth Ladygo Date: Tue, 21 May 2019 16:22:35 -0700 Subject: [PATCH] cat list: fix bug when adding material to existing section --- cateditor/src/pages/editor/store/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/cateditor/src/pages/editor/store/index.js b/cateditor/src/pages/editor/store/index.js index 1c94bf1..dcc046e 100644 --- a/cateditor/src/pages/editor/store/index.js +++ b/cateditor/src/pages/editor/store/index.js @@ -368,6 +368,7 @@ export const store = new Vuex.Store({ let models = getters.sectionModels(section) models.push(newModel) foundSection = section + foundModels = models break } }