Implemented negative filters in back-end, added basic fixed filters settings dialog.

This commit is contained in:
2024-04-02 05:55:53 +02:00
parent 30fdbbd737
commit 98c25cd24e
17 changed files with 260 additions and 43 deletions

View File

@@ -9,7 +9,9 @@ export default function navigate(path, query, options = {}) {
}).toString();
const url = queryString
? `${path}?${queryString.replace(/%2C/g, ',')}` // URLSearchParams encodes commas, we don't want that
? `${path}?${queryString
.replace(/%2C/g, ',') // URLSearchParams encodes commas and colons, we don't want that
.replace(/%3A/g, ':')}`
: path;
if (options.redirect) {