Skip to content

Commit

Permalink
Merge pull request #652 from webitel/feature/custom-chat-gateway
Browse files Browse the repository at this point in the history
refactor: generate value length increase [WTEL-4482]
  • Loading branch information
VladimirBeria authored Apr 25, 2024
2 parents 2e9bdb4 + 0978765 commit 7c20e22
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 7c20e22

Please sign in to comment.