diff --git a/src/api/portal.html b/src/api/portal.html
index 8886097..30c11d1 100644
--- a/src/api/portal.html
+++ b/src/api/portal.html
@@ -157,10 +157,10 @@ function renderTabs() {
const n = (data[ch] || []).length;
const cls = ch === activeTab ? 'tab active' : 'tab';
const count = n > 0 ? '' + n + '' : '';
- return '
' + ch.charAt(0).toUpperCase() + ch.slice(1) + count + '
';
+ return '' + ch.charAt(0).toUpperCase() + ch.slice(1) + count + '
';
}).join('');
const statusCls = activeTab === '__status__' ? 'tab active' : 'tab';
- html += 'Status
';
+ html += 'Status
';
el.innerHTML = html;
}
@@ -176,7 +176,7 @@ function renderList() {
el.innerHTML = items.map(r => {
const name = r.meta?.username ? '@' + r.meta.username : r.meta?.firstName || 'User ' + r.id;
const ago = timeAgo(r.createdAt);
- return '' + esc(r.code) + '
';
+ return '' + esc(r.code) + '
';
}).join('');
}
@@ -213,7 +213,7 @@ function renderStatus() {
const summary = c.summary ? esc(c.summary) : '';
const msgs = c.messageCount ? c.messageCount + ' msgs' : '';
const ago = c.updatedAt ? timeAgo(c.updatedAt) : '';
- html += '';
+ html += '
';
html += '
' + esc(c.id) + '
';
html += '
' + (summary || ago) + '
';
html += '
' + msgs + '
';