mirror of
				https://github.com/netbox-community/netbox.git
				synced 2024-05-10 07:54:54 +00:00 
			
		
		
		
	Merge pull request #8735 from minitriga/issue_8629
Add description to tag table search function
This commit is contained in:
		@@ -2,6 +2,10 @@
 | 
			
		||||
 | 
			
		||||
## v3.1.9 (FUTURE)
 | 
			
		||||
 | 
			
		||||
### Enhancements
 | 
			
		||||
 | 
			
		||||
* [#8629](https://github.com/netbox-community/netbox/issues/8629) - Add description to tag table search function
 | 
			
		||||
 | 
			
		||||
### Bug Fixes
 | 
			
		||||
 | 
			
		||||
* [#8546](https://github.com/netbox-community/netbox/issues/8546) - Fix bulk import to restrict bridge, parent, and LAG to device interfaces
 | 
			
		||||
 
 | 
			
		||||
@@ -184,7 +184,8 @@ class TagFilterSet(ChangeLoggedModelFilterSet):
 | 
			
		||||
            return queryset
 | 
			
		||||
        return queryset.filter(
 | 
			
		||||
            Q(name__icontains=value) |
 | 
			
		||||
            Q(slug__icontains=value)
 | 
			
		||||
            Q(slug__icontains=value) |
 | 
			
		||||
            Q(description__icontains=value)
 | 
			
		||||
        )
 | 
			
		||||
 | 
			
		||||
    def _content_type(self, queryset, name, values):
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user