mirror of
https://github.com/9001/copyparty.git
synced 2026-06-20 05:02:28 -06:00
always uppercase profile letter in header
This commit is contained in:
parent
e4171c3efe
commit
4e078ad99c
|
|
@ -9073,7 +9073,7 @@ function apply_perms(res) {
|
||||||
|
|
||||||
if(acct != '*'){
|
if(acct != '*'){
|
||||||
ebi('acc_name').innerHTML = acct;
|
ebi('acc_name').innerHTML = acct;
|
||||||
ebi('acc_pfp').innerHTML = acct.substring(0, 1);
|
ebi('acc_pfp').innerHTML = acct.substring(0, 1).toUpperCase();
|
||||||
ebi('accessType').innerHTML = '<span' + aclass + axs + L.access + '</span>';
|
ebi('accessType').innerHTML = '<span' + aclass + axs + L.access + '</span>';
|
||||||
ebi('blogout').value = L.logout;
|
ebi('blogout').value = L.logout;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue