From 92fcc8c50b6249d08182468b052dc2031d1e26cc Mon Sep 17 00:00:00 2001 From: xieyuhang Date: Wed, 3 Jun 2020 13:24:04 +0800 Subject: [PATCH] fix: error in tag refresh --- src/layout/components/TagsView/ScrollPane.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/layout/components/TagsView/ScrollPane.vue b/src/layout/components/TagsView/ScrollPane.vue index 655b6cce..33c3375f 100644 --- a/src/layout/components/TagsView/ScrollPane.vue +++ b/src/layout/components/TagsView/ScrollPane.vue @@ -40,7 +40,10 @@ export default { const $scrollWrapper = this.scrollWrapper const tagList = Array.from(window.document.querySelectorAll('#tags-view-container .tags-view-item')) const currentTag = tagList.find(i => i.dataset.fullPath === currentRoute.fullPath) - + // when jumping `/redirect/` at the beginning of the path will not match + if (!currentTag) { + return + } let firstTag = null let lastTag = null