diff --git a/src/main/angular/src/app/pages/property/list/property-list.component.html b/src/main/angular/src/app/pages/property/list/property-list.component.html
index 0c26f07..a97ac45 100644
--- a/src/main/angular/src/app/pages/property/list/property-list.component.html
+++ b/src/main/angular/src/app/pages/property/list/property-list.component.html
@@ -2,10 +2,6 @@
- |
-
-
-
-
| Bezeichnung |
@@ -98,3 +94,7 @@
+
+
+
+
diff --git a/src/main/java/de/ph87/homeautomation/RepositorySearchHelper.java b/src/main/java/de/ph87/homeautomation/RepositorySearchHelper.java
index 35d660e..c8d4783 100644
--- a/src/main/java/de/ph87/homeautomation/RepositorySearchHelper.java
+++ b/src/main/java/de/ph87/homeautomation/RepositorySearchHelper.java
@@ -23,7 +23,6 @@ public class RepositorySearchHelper {
.replaceAll("([A-Z])([A-Z])", "$1 $2")
.replaceAll("([a-z])([A-Z])", "$1 $2")
.toLowerCase(Locale.ROOT);
- System.out.println(term2);
final List predicates = Arrays.stream(term2.split("\\s"))
.filter(word -> !word.isEmpty())
.map(word -> criteriaBuilder.like(field, "%" + word + "%"))