We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7ed280 commit 85f40bcCopy full SHA for 85f40bc
netbox/extras/tables/tables.py
@@ -1,3 +1,5 @@
1
+import json
2
+
3
import django_tables2 as tables
4
from django.conf import settings
5
from django.utils.translation import gettext as _
@@ -110,6 +112,9 @@ class SavedFilterTable(NetBoxTable):
110
112
enabled = columns.BooleanColumn()
111
113
shared = columns.BooleanColumn()
114
115
+ def value_parameters(self, value):
116
+ return json.dumps(value)
117
118
class Meta(NetBoxTable.Meta):
119
model = SavedFilter
120
fields = (
0 commit comments