summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFushihara <1039534+fushihara@users.noreply.github.com>2024-09-25 23:04:21 +0900
committerFushihara <1039534+fushihara@users.noreply.github.com>2024-09-25 23:04:21 +0900
commit803a980b296b51de9128b80539c02fc007903311 (patch)
treecd3d12fd94933b2298276425a9a076c06aebe785 /src
parent4ee67d66be5f83db09b66fb61dcbeb2739d633e0 (diff)
getCategoryTagで毎回読み直していたので修正
Diffstat (limited to 'src')
-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 7ce98b3..c21e42e 100644
--- a/src/util/articleLoader.ts
+++ b/src/util/articleLoader.ts
@@ -27,7 +27,7 @@ export class ArticleLoader {
return loadedData;
}
async getCategoryTag() {
- const loadedData = await this._loadData();
+ const loadedData = await this.loadData();
return loadedData.categoryTag;
}
/**