diff --git a/web/app.js b/web/app.js index 6bd9bfa..a2e8937 100644 --- a/web/app.js +++ b/web/app.js @@ -3547,6 +3547,7 @@ function createPostCard(post, status, meta = {}) { const totalOverall = typeof meta.totalOverall === 'number' ? meta.totalOverall : posts.length; const tabTotalCount = typeof meta.tabTotalCount === 'number' ? meta.tabTotalCount : posts.length; const searchActive = !!meta.searchActive; + const indexBadge = displayIndex !== null ? `#${String(displayIndex).padStart(2, '0')}` : ''; const profileRowsHtml = status.profileStatuses.map((profileStatus) => { const classes = ['profile-line', `profile-line--${profileStatus.status}`]; @@ -3689,6 +3690,7 @@ function createPostCard(post, status, meta = {}) {