From 693a05cc8b83e1cbbe22184b5ffd8a360157e1ff Mon Sep 17 00:00:00 2001 From: Fushihara <1039534+fushihara@users.noreply.github.com> Date: Wed, 25 Sep 2024 23:12:15 +0900 Subject: [PATCH] up --- src/util/articleLoader.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/articleLoader.ts b/src/util/articleLoader.ts index c21e42e..9d80d7a 100644 --- a/src/util/articleLoader.ts +++ b/src/util/articleLoader.ts @@ -34,7 +34,7 @@ export class ArticleLoader { * 指定のタグ、パンくずリストの記事一覧を取得 */ async getTagArticle(tagName: string) { - const loadedData = await this._loadData(); + const loadedData = await this.loadData(); const filterdArticles = loadedData.articles.filter(article => { if (article.tags.includes(tagName)) { return true;