From a3570b6833ea68e1737a51e68b68eb1d0cba759c Mon Sep 17 00:00:00 2001 From: Peter <42907716+MrShack@users.noreply.github.com> Date: Sat, 12 Apr 2025 23:02:28 +0200 Subject: [PATCH] Fix improperly formatted (input) binding in bans component Removed excessive whitespace in the (input) binding of the search field to ensure proper functionality and readability. This change improves code cleanliness without altering behavior. --- frontend/src/app/bans/bans.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/bans/bans.component.html b/frontend/src/app/bans/bans.component.html index 66833e1..a25a98d 100644 --- a/frontend/src/app/bans/bans.component.html +++ b/frontend/src/app/bans/bans.component.html @@ -33,7 +33,7 @@ type="search" placeholder="Search.." [(ngModel)]="searchTerm" - (input)=" filterNames()" + (input)="filterNames()" >