diff --git a/src/components/NcListItem/NcListItem.vue b/src/components/NcListItem/NcListItem.vue
index b9583c5c..8b081355 100644
--- a/src/components/NcListItem/NcListItem.vue
+++ b/src/components/NcListItem/NcListItem.vue
@@ -35,6 +35,11 @@
+
+
+ Name of the element with content
+
+
In this slot you can put both text and other components such as icons
@@ -193,6 +198,14 @@
+
+
+ Flexible styling within the first line of the component
+
+ like this.
+
+
+
In this slot you can put both text and other components such as icons
@@ -356,7 +369,8 @@
- {{ name }}
+
+ {{ name }}
@@ -558,7 +572,6 @@ export default {
hovered: false,
hasActions: false,
hasSubname: false,
- hasNameSideContent: false,
displayActionsOnHoverFocus: false,
menuOpen: false,
hasIndicator: false,
@@ -679,9 +692,6 @@ export default {
if (this.hasSubname !== !!this.$slots.subname) {
this.hasSubname = !!this.$slots.subname
}
- if (this.hasNameSideContent !== !!this.$slots.namesidecontent) {
- this.hasNameSideContent = !!this.$slots.namesidecontent
- }
if (this.hasIndicator !== !!this.$slots.indicator) {
this.hasIndicator = !!this.$slots.indicator
}