fix: interface up bug

This commit is contained in:
suxiaoxin 2017-08-17 16:40:58 +08:00
parent a02b4e585a
commit bd85dbbd42

View File

@ -19,7 +19,7 @@ export default (state = initialState, action) => {
case UPDATE_INTERFACE_DATA:
return {
...state,
curdata: action.updata
curdata: Object.assign({}, state.curdata, action.updata)
}
case DELETE_INTERFACE_DATA:
return (() => {