summaryrefslogtreecommitdiffstats
path: root/src/components/ContactsList.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ContactsList.vue')
-rw-r--r--src/components/ContactsList.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/ContactsList.vue b/src/components/ContactsList.vue
index b63e25bb..c604023a 100644
--- a/src/components/ContactsList.vue
+++ b/src/components/ContactsList.vue
@@ -112,7 +112,7 @@ export default {
/**
* Scroll to the desired contact if in the list and not visible
*
- * @param {String} key the contact unique key
+ * @param {string} key the contact unique key
*/
scrollToContact(key) {
const item = this.$el.querySelector('#' + btoa(key).slice(0, -2))
@@ -139,7 +139,7 @@ export default {
* Is this matching the current search ?
*
* @param {Contact} contact the contact to search
- * @returns {boolean}
+ * @return {boolean}
*/
matchSearch(contact) {
if (this.searchQuery.trim() !== '') {