diff --git a/shared/js/ui/modal/ModalChannelInfo.ts b/shared/js/ui/modal/ModalChannelInfo.ts index b2507130..b8d44405 100644 --- a/shared/js/ui/modal/ModalChannelInfo.ts +++ b/shared/js/ui/modal/ModalChannelInfo.ts @@ -45,6 +45,7 @@ function apply_channel_description(container: JQuery, channel: ChannelEntry) { const container_no_value = container.find(".no-value"); channel.getChannelDescription().then(description => { + container_value.empty(); if (description) { renderBBCodeAsJQuery(description, { convertSingleUrls: true }).forEach(element => container_value.append(element)); container_no_value.hide();