Skip to content

Commit

Permalink
chore: add the missing isRequired prop in WDSPhoneInputWidget (#33607)
Browse files Browse the repository at this point in the history
Fixes #33241

/ok-to-test tags="@tag.Anvil"<!-- This is an auto-generated comment:
Cypress test results -->
> [!TIP]
> 🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉
> Workflow run:
<https://github.com/appsmithorg/appsmith/actions/runs/9173533714>
> Commit: 1cdcec8
> Cypress dashboard url: <a
href="https://internal.appsmith.com/app/cypress-dashboard/rundetails-65890b3c81d7400d08fa9ee5?branch=master&workflowId=9173533714&attempt=1"
target="_blank">Click here!</a>

<!-- end of auto-generated comment: Cypress test results  -->

Co-authored-by: Pawan Kumar <pawankumar@Pawans-MacBook-Pro-2.local>
  • Loading branch information
jsartisan and Pawan Kumar authored May 21, 2024
1 parent e4f713c commit 0192b38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export function PhoneInputComponent(props: PhoneInputComponentProps) {
errorMessage={props.errorMessage}
isDisabled={props.isDisabled}
isReadOnly={props.isReadOnly}
isRequired={props.isRequired}
label={props.label}
onChange={props.onValueChange}
onFocusChange={props.onFocusChange}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,7 @@ class WDSPhoneInputWidget extends WDSBaseInputWidget<
isDisabled={this.props.isDisabled}
isLoading={this.props.isLoading}
isReadOnly={this.props.isReadOnly}
isRequired={this.props.isRequired}
label={this.props.label}
onFocusChange={this.onFocusChange}
onISDCodeChange={this.onISDCodeChange}
Expand Down

0 comments on commit 0192b38

Please sign in to comment.