diff --git a/demos/src/Examples/Community/React/MentionList.jsx b/demos/src/Examples/Community/React/MentionList.jsx
index 40b157f4..e01b9f57 100644
--- a/demos/src/Examples/Community/React/MentionList.jsx
+++ b/demos/src/Examples/Community/React/MentionList.jsx
@@ -54,15 +54,18 @@ export const MentionList = forwardRef((props, ref) => {
return (
- {props.items.map((item, index) => (
-
- ))}
+ {props.items.length
+ ? props.items.map((item, index) => (
+
+ ))
+ :
No result
+ }
)
})
diff --git a/demos/src/Examples/Community/Vue/MentionList.vue b/demos/src/Examples/Community/Vue/MentionList.vue
index 3a159cb8..387f04bc 100644
--- a/demos/src/Examples/Community/Vue/MentionList.vue
+++ b/demos/src/Examples/Community/Vue/MentionList.vue
@@ -1,14 +1,19 @@
-
+
+
+
+
+ No result
+
diff --git a/demos/src/Experiments/Commands/Vue/CommandsList.vue b/demos/src/Experiments/Commands/Vue/CommandsList.vue
index d904afb6..87ce1178 100644
--- a/demos/src/Experiments/Commands/Vue/CommandsList.vue
+++ b/demos/src/Experiments/Commands/Vue/CommandsList.vue
@@ -1,14 +1,19 @@
-
+
+
+
+
+ No result
+
diff --git a/demos/src/Nodes/Mention/React/MentionList.jsx b/demos/src/Nodes/Mention/React/MentionList.jsx
index 0091b63e..2a0be1c2 100644
--- a/demos/src/Nodes/Mention/React/MentionList.jsx
+++ b/demos/src/Nodes/Mention/React/MentionList.jsx
@@ -51,15 +51,18 @@ export default forwardRef((props, ref) => {
return (
- {props.items.map((item, index) => (
-
- ))}
+ {props.items.length
+ ? props.items.map((item, index) => (
+
+ ))
+ :
No result
+ }
)
})
diff --git a/demos/src/Nodes/Mention/Vue/MentionList.vue b/demos/src/Nodes/Mention/Vue/MentionList.vue
index 3a159cb8..387f04bc 100644
--- a/demos/src/Nodes/Mention/Vue/MentionList.vue
+++ b/demos/src/Nodes/Mention/Vue/MentionList.vue
@@ -1,14 +1,19 @@
-
+
+
+
+
+ No result
+