Skip to content

Commit 1957969

Browse files
committed
Fix typo
1 parent 8a52735 commit 1957969

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/components/atoms/ArticleCardContentDataPublishedAt.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<p class="area-date">{{ formettedPublishedAt }}</p>
2+
<p class="area-date">{{ formattedPublishedAt }}</p>
33
</template>
44

55
<script>
@@ -13,7 +13,7 @@ export default {
1313
}
1414
},
1515
computed: {
16-
formettedPublishedAt() {
16+
formattedPublishedAt() {
1717
return formatDate(this.publishedAt)
1818
}
1919
}

app/components/atoms/ArticleSubInfos.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<div class="area-article-sub-infos-container">
33
<div class="article-sub-info">
4-
公開日:<span class="published-at">{{ formettedPublishedAt }}</span>
4+
公開日:<span class="published-at">{{ formattedPublishedAt }}</span>
55
</div>
66
<div class="article-sub-info">
77
獲得トークン:<span class="token-amount">{{ formattedTokenAmount }}</span>
@@ -25,7 +25,7 @@ export default {
2525
}
2626
},
2727
computed: {
28-
formettedPublishedAt() {
28+
formattedPublishedAt() {
2929
return formatDate(this.publishedAt)
3030
},
3131
formattedTokenAmount() {

0 commit comments

Comments
 (0)