vue2-client 1.8.224 → 1.8.225

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.8.224",
3
+ "version": "1.8.225",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
@@ -694,7 +694,10 @@ export default {
694
694
  if (this.getDataParams && this.getDataParams[this.attr.model]) {
695
695
  Object.assign(value, this.getDataParams[this.attr.model])
696
696
  }
697
- runLogic(logic, value, this.serviceName, this.env === 'dev').then(res => {
697
+ runLogic(logic, Object.assign(value, {
698
+ orgId: this.currUser.orgid,
699
+ userId: this.currUser.id
700
+ }), this.serviceName, this.env === 'dev').then(res => {
698
701
  callbackFun(res)
699
702
  }).catch(e => {
700
703
  callbackFun([])