From 53a60a581a8e51bd176ee1fbe9e3db9680e4a625 Mon Sep 17 00:00:00 2001 From: Valentin CZERYBA Date: Sat, 21 Dec 2024 20:19:33 +0100 Subject: [PATCH] fix tags input --- covas_mobile/lib/pages/ListItemMenu.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/covas_mobile/lib/pages/ListItemMenu.dart b/covas_mobile/lib/pages/ListItemMenu.dart index 87f23bf..e68fd8c 100644 --- a/covas_mobile/lib/pages/ListItemMenu.dart +++ b/covas_mobile/lib/pages/ListItemMenu.dart @@ -551,7 +551,7 @@ class _MyHomePageState extends State { decoration: InputDecoration( labelText: 'Search by tags', border: OutlineInputBorder(), - suffixIcon: inputItem.text.isEmpty + suffixIcon: inputTags.text.isEmpty ? null : IconButton( icon: const Icon(Icons.clear),