Fix conversations width

This commit is contained in:
2021-04-05 16:03:35 +02:00
parent 5bb7b2a39e
commit 20efa81a29
3 changed files with 25 additions and 1 deletions

View File

@ -13,7 +13,16 @@ const GroupConversationPage = {
* @param {HTMLElement} target Target page
*/
show: function(conv, target) {
ConversationPageConvPart.open(conv.id, target)
const convTarget = createElem2({
appendTo: target,
type: "div",
class: "row",
innerHTML: "<div class='col-md-6 group-page-conversation'></div>"
}).children[0]
ConversationPageConvPart.open(conv.id, convTarget)
}
}