From 15d3a05553344a0c70e1407cc7ad797a79ad7663 Mon Sep 17 00:00:00 2001 From: raf-dev1 Date: Tue, 10 Jun 2025 10:03:32 +0300 Subject: [PATCH] assign tag dropDown now show all Tags without condition --- lib/common/tag_dialog_textfield_dropdown.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/common/tag_dialog_textfield_dropdown.dart b/lib/common/tag_dialog_textfield_dropdown.dart index 6bc22fc0..9fa85284 100644 --- a/lib/common/tag_dialog_textfield_dropdown.dart +++ b/lib/common/tag_dialog_textfield_dropdown.dart @@ -50,9 +50,9 @@ class _DialogTextfieldDropdownState extends State { void _filterItems() { setState(() { - _filteredItems = widget.items - .where((tag) => tag.product?.uuid == widget.product) - .toList(); + _filteredItems = widget.items; + // .where((tag) => tag.product?.uuid == widget.product) + // .toList(); }); }