mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-27 18:53:20 +01:00
fix (tag): ux bug on tag
This commit is contained in:
parent
d6777e6c92
commit
666730d5ce
1 changed files with 4 additions and 1 deletions
|
|
@ -207,7 +207,10 @@ async function ctrlNavigationPane(render, { $sidebar, path }) {
|
|||
}
|
||||
|
||||
async function ctrlTagPane(render, { tags, path }) {
|
||||
if (!getConfig("enable_tags", false)) return;
|
||||
if (getConfig("enable_tags", false) === false) {
|
||||
render(document.createElement("div"));
|
||||
return;
|
||||
}
|
||||
const $page = createElement(`
|
||||
<div>
|
||||
<h3 class="no-select">
|
||||
|
|
|
|||
Loading…
Reference in a new issue