fix(ipam): Add comments field to ASN search indexing (#22739)
Include comments field in ASN search with weight 5000 to enable full-text search on ASN comment content. Fixes #22736
This commit is contained in:
parent
98c94f5fc7
commit
84a024babd
|
|
@ -22,6 +22,7 @@ class ASNIndex(SearchIndex):
|
|||
('asn', 100),
|
||||
('prefixed_name', 110),
|
||||
('description', 500),
|
||||
('comments', 5000),
|
||||
)
|
||||
display_attrs = ('rir', 'role', 'tenant', 'description')
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue