Show number of results in changes.html, fix search input width.

This commit is contained in:
Mario Zechner 2023-06-01 14:25:12 +02:00
parent 4302ed8137
commit 53fd866617
3 changed files with 2 additions and 1 deletions

View File

@ -25,6 +25,7 @@
<label><input id="decreases" type="checkbox" checked="true">Billiger</label>
<label><input id="fullhistory" type="checkbox" checked="true">Gesamte Preishistorie</label>
</div>
<div id="results"></div>
<table id="result"></table>
</div>
<script src="utils.js"></script>

View File

@ -89,6 +89,7 @@ function showResults(items, today) {
}
table.appendChild(itemToDOM(item));
}
document.querySelector("#results").innerText = "Resultate: " + changedItems.length;
}
load();

View File

@ -27,7 +27,6 @@ a {
.search {
margin: 20px 0;
width: 100%;
max-width: 30em;
font-size: 1em;
}