diff --git a/src/components/sortable/sortableList/SortableList.vue b/src/components/sortable/sortableList/SortableList.vue
index 4548edcb3..e712ab005 100644
--- a/src/components/sortable/sortableList/SortableList.vue
+++ b/src/components/sortable/sortableList/SortableList.vue
@@ -27,12 +27,20 @@
v-model="item.name"
type="text"
autofocus
- @blur.stop="onBlur()"
+ required
+ :state="validateState(item.name, item)"
+ :error="validateError(item.name, item)"
+ @blur.stop="onBlur(item.name, item)"
+ @keydown.enter.stop="onBlur(item.name, item)"
+ @focus="onFocus(item.name, item)"
/>
{{ item.name }}
-