Skip to content

Commit bca1999

Browse files
authored
Merge pull request #1334 from ShivankShuklaa/Dev-2.0
Noc Number Validation Corrected
2 parents 62a904f + d115fb8 commit bca1999

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

frontend/micro-ui/web/micro-ui-internals/packages/modules/obps/src/pageComponents/BPANewBuildingdetails.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ const BPANewBuildingdetails = ({ t, config, onSelect, formData }) => {
400400
ValidationRequired={false}
401401
{...(validation = {
402402
//isRequired: true,
403-
pattern: "^[a-zA-Z0-9]*$",
403+
pattern: "^[a-zA-Z0-9/]*$",
404404
type: "text",
405405
title: t("TL_NAME_ERROR_MESSAGE"),
406406
})}
@@ -695,7 +695,6 @@ const BPANewBuildingdetails = ({ t, config, onSelect, formData }) => {
695695
rules={{ required: t("CORE_COMMON_REQUIRED_ERRMSG")}}
696696
render={(props) => (
697697
<Dropdown
698-
699698
className="form-field"
700699
selected={buildingStatus}
701700
select={setbuildingStatus}

0 commit comments

Comments
 (0)