Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/NewMessageForm/AdvancedInput/AdvancedInput.vue')
-rw-r--r--src/components/NewMessageForm/AdvancedInput/AdvancedInput.vue7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/components/NewMessageForm/AdvancedInput/AdvancedInput.vue b/src/components/NewMessageForm/AdvancedInput/AdvancedInput.vue
index eae9624c5..c54995088 100644
--- a/src/components/NewMessageForm/AdvancedInput/AdvancedInput.vue
+++ b/src/components/NewMessageForm/AdvancedInput/AdvancedInput.vue
@@ -107,7 +107,7 @@ import debounce from 'debounce'
* vue-at component or not.
*
* @param {CSSStyleSheet} sheet the style sheet to check.
- * @returns {Boolean} True if it is the style sheet from vue-at, false
+ * @return {boolean} True if it is the style sheet from vue-at, false
* otherwise.
*/
function isDefaultAtWhoStyleSheet(sheet) {
@@ -281,7 +281,8 @@ export default {
* The vue-at library only searches in the display name by default.
* But luckily our server responds already only with matching items,
* so we just filter none and show them all.
- * @returns {boolean} True as we never filter anything out
+ *
+ * @return {boolean} True as we never filter anything out
*/
atFilter() {
return true
@@ -347,7 +348,7 @@ export default {
* Sets the autocomplete mention candidates based on the matched text
* after the "@".
*
- * @param {String} chunk the matched text to look candidate mentions for.
+ * @param {string} chunk the matched text to look candidate mentions for.
*/
handleAtEvent: debounce(function(chunk) {
this.queryPossibleMentions(chunk)