Skip to content

Commit

Permalink
Merge pull request #1334 from ShivankShuklaa/Dev-2.0
Browse files Browse the repository at this point in the history
Noc Number Validation Corrected
  • Loading branch information
sriranjan-s committed Sep 10, 2024
2 parents 62a904f + d115fb8 commit bca1999
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ const BPANewBuildingdetails = ({ t, config, onSelect, formData }) => {
ValidationRequired={false}
{...(validation = {
//isRequired: true,
pattern: "^[a-zA-Z0-9]*$",
pattern: "^[a-zA-Z0-9/]*$",
type: "text",
title: t("TL_NAME_ERROR_MESSAGE"),
})}
Expand Down Expand Up @@ -695,7 +695,6 @@ const BPANewBuildingdetails = ({ t, config, onSelect, formData }) => {
rules={{ required: t("CORE_COMMON_REQUIRED_ERRMSG")}}
render={(props) => (
<Dropdown

className="form-field"
selected={buildingStatus}
select={setbuildingStatus}
Expand Down

0 comments on commit bca1999

Please sign in to comment.