summaryrefslogtreecommitdiff
path: root/src/views
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2021-03-24 20:53:29 +0100
committerSanto Cariotti <santo@dcariotti.me>2021-03-24 20:53:29 +0100
commit57e1a9e33597f30da0870a9af4d3e9167a7b3367 (patch)
treeaa5e93c3e8f2244442ff9fab4a56211d08600fbe /src/views
parent7075b22bda0da70108f150208a8b8f0898854eb1 (diff)
fix: typo for commits found number
Diffstat (limited to 'src/views')
-rw-r--r--src/views/Repository.vue2
-rw-r--r--src/views/Search.vue2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/views/Repository.vue b/src/views/Repository.vue
index ade55d3..0b9e2cf 100644
--- a/src/views/Repository.vue
+++ b/src/views/Repository.vue
@@ -14,7 +14,7 @@
i.fab.fa-github
section(v-if="commits.length > 0")
.commit.no-hover
- h2 Commits found {{ (commits.length == 1000)?"1000+":commits.length }}
+ h2 Commits found: {{ (commits.length == 1000)?"1000+":commits.length }}
commit-card(
v-for="i in commits" :key="i.hash" :data="i"
:author="emails[i.author_email]"
diff --git a/src/views/Search.vue b/src/views/Search.vue
index 5cbfe33..50f922c 100644
--- a/src/views/Search.vue
+++ b/src/views/Search.vue
@@ -5,7 +5,7 @@
b-overlay(:show="true" spinner-large)
b-container(v-else)
.commit.no-hover
- h2 Commits found {{ commits.length }}
+ h2 Commits found: {{ commits.length }}
.commit.no-hover(style="padding: 50px" v-if="loading")
b-overlay(:show="true" spinner-large)
commit-card(