We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d2ca2d commit c2c9501Copy full SHA for c2c9501
1 file changed
static/dashboard.js
@@ -313,16 +313,6 @@ function showMessage(message, type = 'info') {
313
}, 5000);
314
}
315
316
-// Generate random alias
317
-function generateRandomAlias(length = 20) {
318
- const chars = 'abcdefghijklmnopqrstuvwxyz0123456789';
319
- let result = '';
320
- for (let i = 0; i < length; i++) {
321
- result += chars.charAt(Math.floor(Math.random() * chars.length));
322
- }
323
- return result;
324
-}
325
-
326
// Initialize when DOM is ready
327
document.addEventListener('DOMContentLoaded', function() {
328
console.log('Dashboard JS loaded');
0 commit comments