From 9def9109249bf59af9c6c5012a5c2367cf200811 Mon Sep 17 00:00:00 2001 From: James Armstong Date: Fri, 2 Aug 2024 21:16:34 -0700 Subject: [PATCH] switch title_sort to sort in api edit request --- cps/static/js/table.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cps/static/js/table.js b/cps/static/js/table.js index 24e637672..e556d85c3 100644 --- a/cps/static/js/table.js +++ b/cps/static/js/table.js @@ -224,7 +224,7 @@ $(function() { } if (title) loopThrough('title', title); - if (title_sort) loopThrough('title_sort', title_sort); + if (title_sort) loopThrough('sort', title_sort); if (author_sort) loopThrough('author_sort', author_sort); if (authors) loopThrough('authors', authors); if (categories) loopThrough('tags', categories);