Skip to content

Commit

Permalink
Merge pull request #1807 from hypersign-protocol/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
Raj6939 authored Nov 28, 2022
2 parents 19d463f + e352e46 commit 9242083
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1070,8 +1070,7 @@ export default {
case "BOOLEAN": {
this.apiData.conditionValue = null
this.isBoolean = true
this.showRegexInputField = false
EventBus.$emit("resetOption",this.apiData.condition);
this.showRegexInputField = false
this.condtionOption =[
{ text: "Condition", value: null },
{ text: "===", value: "===" },
Expand Down Expand Up @@ -1235,7 +1234,7 @@ export default {
case "BOOLEAN":
case "STRING":
case "OBJECT":
if(this.apiData.conditionValue === null) {
if(this.apiData.conditionValue === null || this.apiData.conditionValue === "") {
isvalid = false
return this.notifyErr(Messages.EVENTS.ACTIONS.CUSTOMAPI.VALID_CONDITION)
}
Expand Down

0 comments on commit 9242083

Please sign in to comment.