diff --git a/OrangeFormsOpen-VUE3/src/components/MultiItemBox/index.vue b/OrangeFormsOpen-VUE3/src/components/MultiItemBox/index.vue
index 20179a73..bcc50600 100644
--- a/OrangeFormsOpen-VUE3/src/components/MultiItemBox/index.vue
+++ b/OrangeFormsOpen-VUE3/src/components/MultiItemBox/index.vue
@@ -23,7 +23,7 @@
-
+
@@ -138,10 +138,10 @@ const onEditItem = (item: ANY_OBJECT | null) => {
emit('edit', item);
}
};
-// const onDeleteItem = (item: ANY_OBJECT) => {
-// if (props.disabled) return;
-// emit('delete', item);
-// };
+const onDeleteItem = (item: ANY_OBJECT) => {
+ if (props.disabled) return;
+ emit('delete', item);
+};