Skip to content

Commit 6483516

Browse files
Update dashboard.js
1 parent 6c8b222 commit 6483516

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

static/dashboard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ function showMessage(message, type = 'info') {
315315

316316
// Generate random alias
317317
function generateRandomAlias(length = 20) {
318-
const chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
318+
const chars = 'abcdefghijklmnopqrstuvwxyz0123456789';
319319
let result = '';
320320
for (let i = 0; i < length; i++) {
321321
result += chars.charAt(Math.floor(Math.random() * chars.length));

0 commit comments

Comments
 (0)