summaryrefslogtreecommitdiff
path: root/src/util/articleLoader.ts
diff options
context:
space:
mode:
authorFushihara <1039534+fushihara@users.noreply.github.com>2024-09-25 23:12:15 +0900
committerFushihara <1039534+fushihara@users.noreply.github.com>2024-09-25 23:12:15 +0900
commit693a05cc8b83e1cbbe22184b5ffd8a360157e1ff (patch)
treef9fd8c4c4bade2ba8bb79c3318f81198033fab33 /src/util/articleLoader.ts
parent803a980b296b51de9128b80539c02fc007903311 (diff)
up
Diffstat (limited to 'src/util/articleLoader.ts')
-rw-r--r--src/util/articleLoader.ts2
1 files changed, 1 insertions, 1 deletions
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;