diff --git a/src/components/NcBreadcrumb/NcBreadcrumb.vue b/src/components/NcBreadcrumb/NcBreadcrumb.vue
index 7fd7f20bb2..868e96976f 100644
--- a/src/components/NcBreadcrumb/NcBreadcrumb.vue
+++ b/src/components/NcBreadcrumb/NcBreadcrumb.vue
@@ -191,8 +191,8 @@ export default {
}
/**
* Event emitted when something is dropped on the breadcrumb.
- *
- * @type {null}
+ * @param {Event} event The DOM drop event
+ * @param {(string|object)} to The `to` prop or, if not set, the `href` prop
*/
this.$emit('dropped', e, this.to || this.href)
this.$parent.$emit('dropped', e, this.to || this.href)
diff --git a/src/components/NcBreadcrumbs/NcBreadcrumbs.vue b/src/components/NcBreadcrumbs/NcBreadcrumbs.vue
index 0246c32c5b..4e5e87078e 100644
--- a/src/components/NcBreadcrumbs/NcBreadcrumbs.vue
+++ b/src/components/NcBreadcrumbs/NcBreadcrumbs.vue
@@ -374,7 +374,8 @@ export default {
/**
* Event emitted when something is dropped on the breadcrumb.
*
- * @type {null}
+ * @param {Event} e the drop DOM event
+ * @param {string} path The path of the breadcrumb
*/
this.$emit('dropped', e, path)
}
diff --git a/src/components/NcListItem/NcListItem.vue b/src/components/NcListItem/NcListItem.vue
index b06c32bf8e..d2583d47cb 100644
--- a/src/components/NcListItem/NcListItem.vue
+++ b/src/components/NcListItem/NcListItem.vue
@@ -352,7 +352,7 @@ export default {
},
/**
- * Id for the element
+ * Id for the `` element
*/
anchorId: {
type: String,