minor fixes

This commit is contained in:
dcore94 2023-02-01 16:21:49 +01:00
parent 78058492c8
commit 893934b43e
1 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ class CCPMethodList2 extends HTMLElement{
<li class="list-group-item list-group-item-dark ccp-process-category">
<details>
<summary>
<h5 style="display: inline" class="text-primary"></h5>
<h5 class="d-inline mr-2 text-primary"></h5>
</summary>
<ul name="process_list" class="list-group ccp-process-list">
<li class="list-group-item list-group-item-secondary ccp-process p-2 my-1" draggable="true">
@ -209,7 +209,7 @@ class CCPMethodList2 extends HTMLElement{
const executables = this.#filtered[d].filter(m=>m.executable).length
e.innerHTML = `
${d} <span title="Number of non executable versions" class="badge badge-danger float-right">${this.#filtered[d].length - executables}</span>
<span title="Number of executable versions" class="badge badge-success float-right">${executables}</span>` }
<span title="Number of executable versions" class="badge badge-success mr-1 float-right">${executables}</span>` }
},
{
target : "details ul[name=process_list]",