Spaces:
Running
Running
Upload 2 files
Browse files- static/app.js +1 -1
- static/style.css +1 -1
static/app.js
CHANGED
|
@@ -643,7 +643,7 @@ function choiceListHTML(items, selectedValues, excludedValues, keyword, kind, li
|
|
| 643 |
const name = String(item.name);
|
| 644 |
const checked = selectedSet.has(name);
|
| 645 |
const excluded = excludedSet.has(name);
|
| 646 |
-
optionsHTML += `<div class="filter-choice-item ${checked ? "active" : ""} ${excluded ? "excluded" : ""}" data-${kind}="${escapeHTML(name)}"><span class="filter-choice-left"><span class="tri-state-box">
|
| 647 |
}
|
| 648 |
let html = `<div class="filter-choice-options">${optionsHTML}</div>`;
|
| 649 |
if (limit && (totalPages === null || total > limit || safePage > 1)) {
|
|
|
|
| 643 |
const name = String(item.name);
|
| 644 |
const checked = selectedSet.has(name);
|
| 645 |
const excluded = excludedSet.has(name);
|
| 646 |
+
optionsHTML += `<div class="filter-choice-item ${checked ? "active" : ""} ${excluded ? "excluded" : ""}" data-${kind}="${escapeHTML(name)}"><span class="filter-choice-left"><span class="tri-state-box"></span><span>${escapeHTML(name)}</span></span><span class="checkbox-count">${Number(item.count || 0).toLocaleString()}</span></div>`;
|
| 647 |
}
|
| 648 |
let html = `<div class="filter-choice-options">${optionsHTML}</div>`;
|
| 649 |
if (limit && (totalPages === null || total > limit || safePage > 1)) {
|
static/style.css
CHANGED
|
@@ -2792,7 +2792,7 @@ body.light .result-snippet em {
|
|
| 2792 |
}
|
| 2793 |
|
| 2794 |
.filter-choice-page-action {
|
| 2795 |
-
justify-content:
|
| 2796 |
color: var(--primary);
|
| 2797 |
}
|
| 2798 |
|
|
|
|
| 2792 |
}
|
| 2793 |
|
| 2794 |
.filter-choice-page-action {
|
| 2795 |
+
justify-content: space-between;
|
| 2796 |
color: var(--primary);
|
| 2797 |
}
|
| 2798 |
|