diff --git a/src/renderer-profile.ts b/src/renderer-profile.ts index 940beb2..8faaf75 100644 --- a/src/renderer-profile.ts +++ b/src/renderer-profile.ts @@ -96,17 +96,17 @@ function renderStreamerProfileCard(p: StreamerProfile): void { const followersStat = `
- + ${escapeProfileHtml(formatProfileFollowers(p.followerCount))} ${escapeProfileHtml(UI_TEXT.profile.followers)}
`; const vodsStat = `
- + ${p.vodCount} ${escapeProfileHtml(UI_TEXT.profile.vods)}
`; const lastStreamStat = `
- + ${escapeProfileHtml(UI_TEXT.profile.lastStream)}: ${escapeProfileHtml(formatLastStreamAgo(p.lastStreamAt))}
`; @@ -128,7 +128,7 @@ function renderStreamerProfileCard(p: StreamerProfile): void {
${escapeProfileHtml(UI_TEXT.profile.liveBadge)} - ${typeof p.currentStreamViewers === 'number' ? ` ${escapeProfileHtml(formatProfileFollowers(p.currentStreamViewers))}` : ''} + ${typeof p.currentStreamViewers === 'number' ? ` ${escapeProfileHtml(formatProfileFollowers(p.currentStreamViewers))}` : ''}
${p.currentTitle ? `
${escapeProfileHtml(p.currentTitle)}
` : ''} ${p.currentGame ? `
${escapeProfileHtml(p.currentGame)}
` : ''} diff --git a/src/renderer-queue.ts b/src/renderer-queue.ts index 2493e0b..14cac13 100644 --- a/src/renderer-queue.ts +++ b/src/renderer-queue.ts @@ -536,7 +536,7 @@ function renderQueue(): void { const selectionIndex = selectedQueueIds.indexOf(item.id); const isSelected = selectionIndex >= 0; const mergeIcon = isMergeGroup - ? ' ' + ? ' ' : ''; const liveBadge = item.isLive ? `REC ` diff --git a/src/renderer-streamers.ts b/src/renderer-streamers.ts index 4e56619..2eca46c 100644 --- a/src/renderer-streamers.ts +++ b/src/renderer-streamers.ts @@ -725,7 +725,7 @@ async function removeStreamer(name: string): Promise { if (typeof hide === 'function') hide(); byId('vodGrid').innerHTML = `
- +

${UI_TEXT.vods.noneTitle}

${UI_TEXT.vods.noneText}