Skip to content

Commit e94bfde

Browse files
committed
random string generator changed
1 parent 5b80cc5 commit e94bfde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/Utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ class Utils {
125125
}
126126

127127
static randomId() {
128-
return (new Date() % 9e6).toString(16)
128+
return (Math.random() + 1).toString(36).substring(4)
129129
}
130130

131131
static noExponents(val) {

0 commit comments

Comments
 (0)