Skip to content

Commit

Permalink
refactor: generate value length increase [WTEL-4482]
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirBeria committed Apr 25, 2024
1 parent 6081491 commit 0978765
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/utils/generate-value-input.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export default {
methods: {
generateValue() {
const length = 12;
const length = 16;
const charset = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
let value = '';
for (let i = 0; i < length; i += 1) {
Expand Down

0 comments on commit 0978765

Please sign in to comment.