Commit 3edaf80d authored by fahrur huzain's avatar fahrur huzain

parameter issue

parent 52480af6
......@@ -1020,7 +1020,7 @@ export default class CreateParameter extends Component {
validasiRegexValue() {
let obj = null
if (R.isNil(this.state.getTypes)) {
obj = { regexValue: "", valueLength: "" }
obj = { regexValue: (/null.*$/), valueLength: 0 }
} else {
if (this.state.getTypes.setting_group_name === "CURRENCY") {
obj = { regexValue: (/\d+(\.\d+)?/), valueLength: 20 }
......@@ -1054,6 +1054,8 @@ export default class CreateParameter extends Component {
obj = { regexValue: (/Q1\s\d{4}/), valueLength: 7 }
}
}
}else{
obj = { regexValue: (/null.*$/), valueLength: 20 }
}
}
return obj;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment