From 6acc7aa848db03de656e4ac056934a3f6fee8764 Mon Sep 17 00:00:00 2001
From: Lars Eggert <lars@eggert.org>
Date: Tue, 26 Sep 2023 16:03:29 +0300
Subject: [PATCH] fix: Restore the ability to search in tables (#6386)

This was broken by 57030e4303aa42423335366f6d025b379b25f6ef
---
 ietf/static/js/list.js | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/ietf/static/js/list.js b/ietf/static/js/list.js
index b047f3e05..f1e9fdf4e 100644
--- a/ietf/static/js/list.js
+++ b/ietf/static/js/list.js
@@ -267,6 +267,9 @@ $(document)
                                 });
                         }
                     });
+                    e.on("searchComplete", function () {
+                        replace_with_internal(table, internal_table, i);
+                    });
                 });
 
                 $(table.addClass("tablesorter-done"));