From 6e5a8698b2004987278e85b8e40a3eecd1fca5a7 Mon Sep 17 00:00:00 2001
From: Eliot Berriot <contact@eliotberriot.com>
Date: Thu, 6 Jun 2019 23:35:06 +0200
Subject: [PATCH] Added info about the number of profiles found

---
 src/components/Suggestions.vue | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/components/Suggestions.vue b/src/components/Suggestions.vue
index 018a226..65ecd51 100644
--- a/src/components/Suggestions.vue
+++ b/src/components/Suggestions.vue
@@ -36,6 +36,9 @@
     <div v-if="isLoading" class="progress">
       <div class="indeterminate"></div>
     </div>
+    <p>
+      {{ filteredSuggestions.length }} profiles found with retribute information ({{ allSuggestions.length }} in total)
+    </p>
     <ul class="collection">
       <li class="collection-item avatar" v-for="suggestion in filteredSuggestions" :key="suggestion.fullId">
         <img v-if="suggestion.avatar" :src="suggestion.avatar" alt="" class="circle">
-- 
GitLab