Browse Source

fix external data sources key parsing with double quote strings

pull/1824/head
Martin McKeaveney 5 years ago
parent
commit
85121db2c5
  1. 2
      packages/server/src/integrations/utils.js

2
packages/server/src/integrations/utils.js

@ -24,7 +24,7 @@ exports.generateRowIdField = (keyProps = []) => {
keyProps = [keyProps]
}
// this conserves order and types
return encodeURIComponent(JSON.stringify(keyProps).replace(/"/g, ''))
return encodeURIComponent(JSON.stringify(keyProps).replace(/"/g, ""))
}
// should always return an array

Loading…
Cancel
Save