From 417838f74c98b54f83fd8999fc4e06ae28adb59a Mon Sep 17 00:00:00 2001 From: dodosophia <376697534@qq.com> Date: Fri, 22 Nov 2019 14:44:15 +0800 Subject: [PATCH 1/2] fix attachment_id undefind --- frontend/src/store/form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/store/form.js b/frontend/src/store/form.js index e26cdae..b60ac2d 100644 --- a/frontend/src/store/form.js +++ b/frontend/src/store/form.js @@ -118,7 +118,7 @@ export default { } commit('updateExtraMsg', { index: indexes.propsIndex, value: newDescFormEventbus }) }, - saveEditedImage({ id, imageData }) { + saveEditedImage({ state, commit }, { id, imageData }) { api.saveImage(id, imageData) }, submit({ state, commit }) { From f35faa791c85eff6ad94672f3556b55eaa1d5c2a Mon Sep 17 00:00:00 2001 From: dodosophia <376697534@qq.com> Date: Fri, 22 Nov 2019 14:49:05 +0800 Subject: [PATCH 2/2] add version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2fa78e5..5a1267d 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='lyrebird-bugit', - version='1.2.2', + version='1.2.3', packages=['lyrebird_bugit'], url='https://github.com/Meituan-Dianping/lyrebird-bugit', author='HBQA',