rephrasing, prepare for methods implementation

This commit is contained in:
overcuriousity
2025-07-19 17:53:17 +02:00
parent ba3a5461b4
commit 1d048e816c
12 changed files with 60 additions and 60 deletions

View File

@@ -472,7 +472,7 @@
</div>
<div class="stat-card">
<div class="stat-number" id="selfHostedCount">0</div>
<div class="stat-label">Self-Hosted</div>
<div class="stat-label">CC24-Server</div>
</div>
<div class="stat-card">
<div class="stat-number" id="knowledgebaseCount">0</div>
@@ -550,7 +550,7 @@
<select id="accessType">
<option value="">Select Type</option>
<option value="download">Download</option>
<option value="self-hosted">Self-Hosted</option>
<option value="server-based">CC24-Server</option>
<option value="commercial">Commercial</option>
<option value="OS">Operating System</option>
</select>
@@ -812,7 +812,7 @@
document.getElementById('totalPhases').textContent = yamlData.phases ? yamlData.phases.length : 0;
document.getElementById('totalDomainAgnostic').textContent = yamlData['domain-agnostic-software'] ? yamlData['domain-agnostic-software'].length : 0;
const selfHosted = tools.filter(tool => tool.accessType === 'self-hosted').length;
const selfHosted = tools.filter(tool => tool.accessType === 'server-based').length;
document.getElementById('selfHostedCount').textContent = selfHosted;
const knowledgebaseTools = tools.filter(tool => tool.knowledgebase === true).length;