From 9073daa944622cf71df3ee6204814df469fee612 Mon Sep 17 00:00:00 2001 From: pragadeeshk Date: Fri, 10 Mar 2023 17:29:33 +0530 Subject: [PATCH] handled none associatedInputs case --- .../reactnative/src/components/actions/action-button.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/community/reactnative/src/components/actions/action-button.js b/source/community/reactnative/src/components/actions/action-button.js index 2f463561a4..0f27e51eec 100644 --- a/source/community/reactnative/src/components/actions/action-button.js +++ b/source/community/reactnative/src/components/actions/action-button.js @@ -111,7 +111,7 @@ export class ActionButton extends React.Component { actionPayload already has `ignoreInputValidation` but to support backward compatibility we are passing it explicitly **/ - this.onExecuteAction(actionPayload, actionPayload.ignoreInputValidation); + this.onExecuteAction(actionPayload, actionPayload.ignoreInputValidation || actionPayload.associatedInputs == Constants.NoneString); break; case Constants.ActionShowCard: this.changeShowCardState();