mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-28 00:07:09 -05:00
Fix Blank Page When Clear Lobby in Web Interface
This commit is contained in:
parent
034d88c4e2
commit
130e3d63fa
@ -234,8 +234,10 @@ function lobby(lobbyid){
|
|||||||
];
|
];
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
var el = document.getElementById("CharLobbyName");
|
var cln = document.getElementById("ChatLobbyName");
|
||||||
el.innerText = lobdt.name;
|
if (cln != null) {
|
||||||
|
cln.innerText = lobdt.name;
|
||||||
|
}
|
||||||
|
|
||||||
msg = m(".chat.bottom",[
|
msg = m(".chat.bottom",[
|
||||||
m("div","enter new message, Ctrl+Enter to submit:"),
|
m("div","enter new message, Ctrl+Enter to submit:"),
|
||||||
@ -388,7 +390,7 @@ module.exports = {
|
|||||||
"h2",
|
"h2",
|
||||||
{
|
{
|
||||||
style:{margin:"0px"},
|
style:{margin:"0px"},
|
||||||
id:"CharLobbyName"
|
id:"ChatLobbyName"
|
||||||
},
|
},
|
||||||
"Lobby Name"
|
"Lobby Name"
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user