Saleslogix/argos-sdk

/src/_ListBase.js - Function createActions

Opened this issue · 0 comments

hasAccess: (!actions.security || (action.security && App.hasAccessTo(this.expandExpression(action.security)))) ? true : false
}

should be:
hasAccess: (!action.security || (action.security && App.hasAccessTo(this.expandExpression(action.security)))) ? true : false
},