fix messaging handle string too long (#5483)

This commit is contained in:
Simon Smith 2023-10-31 19:11:56 +00:00 committed by GitHub
parent cb87cc8172
commit 23b78960da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12169,7 +12169,7 @@
var x;
if (userinfo.msghandle != null) {
x = '<table style=width:100%><tr><td style=width:56px><img src="images/messaging40.png" style=padding:8px>';
x += '<td style=text-align:center><div style=padding:6px>' + "Verified handle" + '</div><div style=font-size:20px>' + EscapeHtml(userinfo.msghandle) + '</div>';
x += '<td style=text-align:center><div style=padding:6px>' + "Verified handle" + '</div><div style=font-weight:bold>' + EscapeHtml(userinfo.msghandle) + '</div>';
x += '<div style=margin:10px><label><input id=d2delPhone type=checkbox onclick=account_managePhoneRemoveValidate() />' + "Remove messaging" + '</label></div>';
setDialogMode(2, "Messaging Notifications", 3, account_manageMessagingRemove, x);
account_managePhoneRemoveValidate();