Added navigation bar to tags page.

This commit is contained in:
2024-01-26 02:35:26 +01:00
parent e79e34ac29
commit fbcae6b7d1
2 changed files with 155 additions and 44 deletions

View File

@@ -12,6 +12,8 @@ export default function navigate(path, query, options = {}) {
if (options.redirect) {
window.location.href = url;
} else if (options.replace) {
history.replaceState({}, '', url); // eslint-disable-line no-restricted-globals
} else {
history.pushState({}, '', url); // eslint-disable-line no-restricted-globals
}