sweep: fix missing view_count on HTML views, API expiry bounds, search ignoring custom slug (#33)
This commit is contained in:
+2
-1
@@ -44,7 +44,8 @@ const PaletteTable = (() => {
|
||||
function matches(it) {
|
||||
if (!state.filter) return true;
|
||||
const f = state.filter.toLowerCase();
|
||||
return (it.title || '').toLowerCase().includes(f) || (it.id || '').toLowerCase().includes(f);
|
||||
return (it.title || '').toLowerCase().includes(f) || (it.id || '').toLowerCase().includes(f) ||
|
||||
(it.custom_slug || '').toLowerCase().includes(f);
|
||||
}
|
||||
|
||||
function renderSortIndicators() {
|
||||
|
||||
Reference in New Issue
Block a user