Skip to content

Commit

Permalink
Noc Number Validation Corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
ShivankShuklaa committed Sep 5, 2024
1 parent be748c5 commit d115fb8
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 d115fb8

Please sign in to comment.