Skip to content

Commit

Permalink
Fix select API error
Browse files Browse the repository at this point in the history
  • Loading branch information
pablotr9 committed Aug 27, 2019
1 parent a29c6c1 commit 031ce10
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ define(['../module'], function(module) {
const api = connectionData.data.api.data
const apiTmp = Object.assign({}, api)
const apiSaved = { apiTmp } //eslint-disable-line
const updatedApi = await updateApiFilter(api)
const updatedApi = await updateApiFilter(connectionData.data)
let equal = true
Object.keys(updatedApi).forEach(key => {
if (updatedApi[key] !== apiSaved[key]) {
Expand Down

0 comments on commit 031ce10

Please sign in to comment.