Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
fushihara committed Sep 25, 2024
1 parent 803a980 commit 693a05c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/articleLoader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 693a05c

Please sign in to comment.