diff --git a/README.md b/README.md index cec6a28..041e492 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Eine moderne Webanwendung zur Suche und Verwaltung von Kundendaten, die MEDISOFT ## Version -Aktuelle Version: v1.2.10 +Aktuelle Version: v1.2.9 ## Installation diff --git a/templates/index.html b/templates/index.html index 9e4f91c..266c02b 100644 --- a/templates/index.html +++ b/templates/index.html @@ -24,16 +24,6 @@ -
-
- - -
-
- - -
-
@@ -265,7 +255,7 @@
${customer.name}
- ${customer.tag.toUpperCase()} + ${(customer.tag || 'medisoft').toUpperCase()} @@ -304,7 +294,6 @@ const nummer = document.getElementById('nummerInput').value; const plz = document.getElementById('plzInput').value; const fachrichtung = document.getElementById('fachrichtungInput').value; - const searchOperator = document.querySelector('input[name="searchOperator"]:checked').value; const selectedTag = document.getElementById('tagFilter').value; // Zeige das Lade-Icon @@ -318,7 +307,6 @@ if (nummer) params.append('nummer', nummer); if (plz) params.append('plz', plz); if (fachrichtung) params.append('fachrichtung', fachrichtung); - if (searchOperator) params.append('operator', searchOperator); if (selectedTag) params.append('tag', selectedTag); // Führe die Suche durch