We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c8b222 commit 6483516Copy full SHA for 6483516
static/dashboard.js
@@ -315,7 +315,7 @@ function showMessage(message, type = 'info') {
315
316
// Generate random alias
317
function generateRandomAlias(length = 20) {
318
- const chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
+ const chars = 'abcdefghijklmnopqrstuvwxyz0123456789';
319
let result = '';
320
for (let i = 0; i < length; i++) {
321
result += chars.charAt(Math.floor(Math.random() * chars.length));
0 commit comments