Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
Tia-dev
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dida Adams Arizona
Tia-dev
Commits
08562e3b
Commit
08562e3b
authored
Feb 05, 2021
by
d.arizona
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bimillah
parent
66601308
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
7 deletions
+11
-7
ListOfCreditFacilities.js
src/container/MonthlyReport/ListOfCreditFacilities.js
+2
-1
Profile.js
src/container/Profile.js
+3
-2
ResetPassword.js
src/container/ResetPassword.js
+3
-2
SetPassword.js
src/container/SetPassword.js
+3
-2
No files found.
src/container/MonthlyReport/ListOfCreditFacilities.js
View file @
08562e3b
...
...
@@ -1404,7 +1404,8 @@ export default class ListOfCreditFacilities extends Component {
let
totalLoan
=
0
const
formatSeparator
=
(
num
)
=>
{
return
String
(
num
).
replace
(
/
(?<
!
\.
.*
)(\d)(?=(?:\d{3})
+
(?:\.
|$
))
/g
,
'$1,'
)
// return String(num).replace(/(?<!\..*)(\d)(?=(?:\d{3})+(?:\.|$))/g, '$1,')
return
num
}
const
handleAction
=
(
typeReport
,
tableMeta
,
typeButton
)
=>
{
...
...
src/container/Profile.js
View file @
08562e3b
...
...
@@ -142,8 +142,9 @@ export default class Profile extends Component {
isRegex
(
value
)
{
// const re = /^(?=.*[0-9])(?=.*[a-zA-Z])([a-zA-Z0-9]+)$/;
const
re
=
/^
(?=
.*
[
A-Za-z
])(?=
.*
\d)(?=
.*
[
@$!%*#?&
])[
A-Za-z
\d
@$!%*#?&
]{1,}
$/
;
return
re
.
test
(
String
(
value
));
// const re = /^(?=.*[A-Za-z])(?=.*\d)(?=.*[@$!%*#?&])[A-Za-z\d@$!%*#?&]{1,}$/;
// return re.test(String(value));
return
(
value
)
}
isEmail
(
email
)
{
...
...
src/container/ResetPassword.js
View file @
08562e3b
...
...
@@ -57,8 +57,9 @@ class ResetPassword extends Component {
isRegex
(
value
)
{
// const re = /^(?=.*[0-9])(?=.*[a-zA-Z])([a-zA-Z0-9]+)$/;
const
re
=
/^
(?=
.*
[
A-Za-z
])(?=
.*
\d)(?=
.*
[
@$!%*#?&
])[
A-Za-z
\d
@$!%*#?&
]{1,}
$/
;
return
re
.
test
(
String
(
value
));
// const re = /^(?=.*[A-Za-z])(?=.*\d)(?=.*[@$!%*#?&])[A-Za-z\d@$!%*#?&]{1,}$/;
// return re.test(String(value));
return
value
}
isEmail
(
email
)
{
...
...
src/container/SetPassword.js
View file @
08562e3b
...
...
@@ -57,8 +57,9 @@ class SetPassword extends Component {
isRegex
(
value
)
{
// const re = /^(?=.*[0-9])(?=.*[a-zA-Z])([a-zA-Z0-9]+)$/;
const
re
=
/^
(?=
.*
[
A-Za-z
])(?=
.*
\d)(?=
.*
[
@$!%*#?&
])[
A-Za-z
\d
@$!%*#?&
]{1,}
$/
;
return
re
.
test
(
String
(
value
));
// const re = /^(?=.*[A-Za-z])(?=.*\d)(?=.*[@$!%*#?&])[A-Za-z\d@$!%*#?&]{1,}$/;
// return re.test(String(value));
return
value
}
isEmail
(
email
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment