From 9f0cfc68c1f886de4c877dadc9982a0057a363a4 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Wed, 2 Aug 2023 21:59:52 -0500 Subject: [PATCH] Make system key searchable for problem report grid --- tailbone/views/reports.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tailbone/views/reports.py b/tailbone/views/reports.py index a1c737b6..5a945f0c 100644 --- a/tailbone/views/reports.py +++ b/tailbone/views/reports.py @@ -629,7 +629,9 @@ class ProblemReportView(MasterView): return data def configure_grid(self, g): - super(ProblemReportView, self).configure_grid(g) + super().configure_grid(g) + + g.set_searchable('system_key') g.set_renderer('email_recipients', self.render_email_recipients)