Finalize remaining Channels updates

This commit is contained in:
DrygMira 2026-04-14 13:49:03 +03:00
parent e17a6765ec
commit cdfc416d02

View File

@ -603,7 +603,7 @@ function renderBody(screen, navigate, routeKey, channelData, handlers) {
const title = document.createElement('strong'); const title = document.createElement('strong');
title.className = 'channel-head-title'; title.className = 'channel-head-title';
title.textContent = channelData.channel.displayName || channelData.channel.name; title.textContent = String(channelData.channel.name || '').trim();
const owner = document.createElement('p'); const owner = document.createElement('p');
owner.className = 'channel-head-meta'; owner.className = 'channel-head-meta';