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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'apps/comments/src/views/Comments.vue')
-rw-r--r--apps/comments/src/views/Comments.vue11
1 files changed, 8 insertions, 3 deletions
diff --git a/apps/comments/src/views/Comments.vue b/apps/comments/src/views/Comments.vue
index 53693fa8919..c101c2c5c39 100644
--- a/apps/comments/src/views/Comments.vue
+++ b/apps/comments/src/views/Comments.vue
@@ -126,7 +126,8 @@ export default {
methods: {
/**
* Update current ressourceId and fetch new data
- * @param {Number} ressourceId the current ressourceId (fileId...)
+ *
+ * @param {number} ressourceId the current ressourceId (fileId...)
*/
async update(ressourceId) {
this.ressourceId = ressourceId
@@ -152,8 +153,9 @@ export default {
/**
* Make sure we have all mentions as Array of objects
+ *
* @param {Array} mentions the mentions list
- * @returns {Object[]}
+ * @return {object[]}
*/
genMentionsData(mentions) {
const list = Object.values(mentions).flat()
@@ -217,6 +219,7 @@ export default {
/**
* Autocomplete @mentions
+ *
* @param {string} search the query
* @param {Function} callback the callback to process the results with
*/
@@ -235,7 +238,8 @@ export default {
/**
* Add newly created comment to the list
- * @param {Object} comment the new comment
+ *
+ * @param {object} comment the new comment
*/
onNewComment(comment) {
this.comments.unshift(comment)
@@ -243,6 +247,7 @@ export default {
/**
* Remove deleted comment from the list
+ *
* @param {number} id the deleted comment
*/
onDelete(id) {