diff options
author | Zero~Informatique | 2020-02-27 23:26:00 +0100 |
---|---|---|
committer | Zero~Informatique | 2020-02-27 23:26:31 +0100 |
commit | f2ff937fe4a5782741886ef4920fd0e284775463 (patch) | |
tree | 8a51b6ceb74bd359ac282a7ff3d6a75f0a105de7 /viewer/src/components/LdCommand.vue | |
parent | f09e9d9fa29284bd9ae872efe5ba1d526e349011 (diff) | |
download | ldgallery-f2ff937fe4a5782741886ef4920fd0e284775463.tar.gz |
viewer: tag index bugfix
Search from the URL requires a strict match instead of a loose match
Category search was case sensitive
Category + disambiguation was matching like an intersection of both tags instead of being hard-coupled
Removed the logs for the release (coming soon)
Diffstat (limited to 'viewer/src/components/LdCommand.vue')
-rw-r--r-- | viewer/src/components/LdCommand.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/viewer/src/components/LdCommand.vue b/viewer/src/components/LdCommand.vue index 398107e..9afd121 100644 --- a/viewer/src/components/LdCommand.vue +++ b/viewer/src/components/LdCommand.vue | |||
@@ -55,7 +55,7 @@ export default class LdCommand extends Vue { | |||
55 | } | 55 | } |
56 | 56 | ||
57 | isEntryPoint(): boolean { | 57 | isEntryPoint(): boolean { |
58 | return history.state.ldgallery === "ENTRYPOINT"; // Set by MainLayout.vue | 58 | return history.state?.ldgallery === "ENTRYPOINT"; // Set by MainLayout.vue |
59 | } | 59 | } |
60 | 60 | ||
61 | parent(): RawLocation { | 61 | parent(): RawLocation { |