fix: do not auto-create grid filters for uuid columns
This commit is contained in:
parent
d0e5ad9053
commit
70ed2dc78c
2 changed files with 21 additions and 7 deletions
|
@ -1021,6 +1021,9 @@ class TestGrid(WebTestCase):
|
|||
self.assertIn('active', filters)
|
||||
# nb. relationship not included by default
|
||||
self.assertNotIn('person', filters)
|
||||
# nb. uuid fields not included by default
|
||||
self.assertNotIn('uuid', filters)
|
||||
self.assertNotIn('person_uuid', filters)
|
||||
|
||||
def test_make_filter(self):
|
||||
model = self.app.model
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue