Replaced unnecessary template strings.

This commit is contained in:
Shy 2024-05-05 07:42:20 +02:00 committed by snoopy
parent 44ced92ef5
commit 4deb81600e

View file

@ -104,10 +104,10 @@ function updateCounter(){
switch(count) {
case 0:
document.getElementById('itemcount').textContent = `No items found.`;
document.getElementById('itemcount').textContent = 'No items found.';
break;
case 1:
document.getElementById('itemcount').textContent = `${count} item found.`;
document.getElementById('itemcount').textContent = '1 item found.';
break;
default:
document.getElementById('itemcount').textContent = `${count} items found.`;