Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion static/js/features/stacks-detail.js
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ function createMemberCard(item) {
if (item.type === 'tracking') {
const count = item.library_count || 0;
if (count > 0) {
subtitle.textContent = `${count} issue${count !== 1 ? 's' : ''} in library`;
subtitle.textContent = `${count} issue${count !== 1 ? 's' : ''}`;
} else {
subtitle.textContent = 'Tracking · no issues yet';
}
Expand Down
2 changes: 1 addition & 1 deletion static/js/features/tracking.js
Original file line number Diff line number Diff line change
Expand Up @@ -1071,7 +1071,7 @@ export class TrackingManager {
: '';
const issueStats =
totalKnown > 0 ? `<span class="issue-count">${totalKnown} issues found</span>` : '';
const libraryStats = `<span class="library-count"><svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true" style="vertical-align:-1px"><path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"/><path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"/></svg> ${libraryCount} in library</span>`;
const libraryStats = `<span class="library-count"><svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true" style="vertical-align:-1px"><path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"/><path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"/></svg> ${libraryCount} issues</span>`;
const selectedStats =
selectedCount > 0
? `<span class="selected-count">\u2022 ${selectedCount} selected</span>`
Expand Down
Loading