Bugfix. Don't append, replace.
Otherwise, if the same error presence is received twice, the form will render twice.
This commit is contained in:
parent
6f80bd5a3d
commit
db24bf7a70
@ -2173,7 +2173,7 @@
|
|||||||
|
|
||||||
renderPasswordForm: function () {
|
renderPasswordForm: function () {
|
||||||
this.$el.find('span.centered.spinner').remove();
|
this.$el.find('span.centered.spinner').remove();
|
||||||
this.$el.find('.chat-body').append(
|
this.$el.find('.chat-body').html(
|
||||||
$('<div class="chatroom-form-container">'+
|
$('<div class="chatroom-form-container">'+
|
||||||
'<form class="chatroom-form">'+
|
'<form class="chatroom-form">'+
|
||||||
'<legend>'+__('This chatroom requires a password')+'</legend>' +
|
'<legend>'+__('This chatroom requires a password')+'</legend>' +
|
||||||
|
Loading…
Reference in New Issue
Block a user