Simplify completion messages

This commit is contained in:
PawiX25 2025-03-24 02:08:16 +01:00
parent 5066e0f272
commit d2391476d3
2 changed files with 2 additions and 2 deletions

View file

@ -213,7 +213,7 @@
<button class="filter-btn" data-category="ending-soon">Ending Soon</button>
<button class="filter-btn" data-category="draft">Draft</button>
<button class="filter-btn" data-category="ended">Ended</button>
<button class="filter-btn user-filter" data-category="user-completed">You Completed</button>
<button class="filter-btn user-filter" data-category="user-completed">Completed</button>
<button class="filter-btn user-filter" data-category="user-not-completed">Not Completed</button>
</div>

View file

@ -315,7 +315,7 @@ function createProgramCard(program) {
<div class="status-container">
<span class="user-completed-badge ${isCompletedByUser ? 'visible' : ''}">
<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"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"/><polyline points="22 4 12 14.01 9 11.01"/></svg>
You completed this
Completed
</span>
<span class="program-status status-${program.status}">${program.status}</span>
</div>