Skip to content

Commit 01bbc37

Browse files
committed
fix(profile): extend save status display duration and add comment for profile editor
1 parent 206923d commit 01bbc37

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Assets/js/profile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ function showSaveStatus(message, className = '') {
429429
setTimeout(() => {
430430
statusEl.textContent = '';
431431
statusEl.className = 'text-center text-sm';
432-
}, 300);
432+
}, 5000);
433433
}, 3000);
434434
}
435435
}

index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,8 @@ <h1 class="text-2xl font-bold text-purple-400 text-center mb-6">Dashboard Login<
150150

151151
<!-- Profile Editor -->
152152

153-
<div id="profileEditor" class="max-w-4xl mx-auto hidden">
153+
<div id="profileEditor" class="max-w-4xl mx-auto hidden pt-4">
154+
<!-- will populate on login -->
154155
</div>
155156

156157
<!-- JavaScript -->

0 commit comments

Comments
 (0)