assign tag dropDown now show all Tags without condition

This commit is contained in:
raf-dev1
2025-06-10 10:03:32 +03:00
parent a1d7457065
commit 15d3a05553

View File

@ -50,9 +50,9 @@ class _DialogTextfieldDropdownState extends State<TagDialogTextfieldDropdown> {
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();
});
}