Commit f1f4cee7 authored by fahrur huzain's avatar fahrur huzain

Merge branch 'dev/fahrur-new' into 'ENV-DEV'

parameter issue

See merge request !2136
parents 52480af6 3edaf80d
......@@ -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