diff --git a/tailbone/grids/core.py b/tailbone/grids/core.py index 7bcebb3d..66705160 100644 --- a/tailbone/grids/core.py +++ b/tailbone/grids/core.py @@ -159,6 +159,8 @@ class Grid(object): if len(args) == 1 and args[0] is None: self.remove_filter(key) else: + if 'label' not in kwargs and key in self.labels: + kwargs['label'] = self.labels[key] self.filters[key] = self.make_filter(key, *args, **kwargs) def remove_filter(self, key):