condition on mobile UI Action failing to evaluateDescription The reject button on the mobile interface is always present despite failing it conditions:current.state == 'requested' && gs.hasRole('approval_admin') || isApprovalMine(current) Steps to Reproduce Impersonate a user with approval rights. Access the mobile UI ($m.do). Go to My approvals in the navigation menu. Select a record in Requested state and click the Approve UI action. Expected Result: After the approval, the Reject UI action should no longer be available. Actual Result: The Reject UI action is still available, and the record can be rejected. Note that the approval button is not available once the state of the record is no longer current.state == 'requested'. Workaround The initial condition was as follows: current.state == 'requested' && gs.hasRole('approval_admin') || isApprovalMine(current) Changing the code to the following will cause the UI action to become hidden as expected: current.state == 'requested' && (gs.hasRole('approval_admin') || isApprovalMine(current)) Related Problem: PRB627678