diff --git a/app/javascript/dashboard/i18n/locale/en/contact.json b/app/javascript/dashboard/i18n/locale/en/contact.json
index 037f6f769..002e834cb 100644
--- a/app/javascript/dashboard/i18n/locale/en/contact.json
+++ b/app/javascript/dashboard/i18n/locale/en/contact.json
@@ -70,6 +70,14 @@
"SUCCESS_MESSAGE": "Contacts saved successfully",
"ERROR_MESSAGE": "There was an error, please try again"
},
+ "DELETE_NOTE": {
+ "CONFIRM":{
+ "TITLE": "Confirm Deletion",
+ "MESSAGE": "Are you want sure to delete this note?",
+ "YES": "Yes, Delete it",
+ "NO": "No, Keep it"
+ }
+ },
"DELETE_CONTACT": {
"BUTTON_LABEL": "Delete Contact",
"TITLE": "Delete contact",
diff --git a/app/javascript/dashboard/modules/notes/components/ContactNote.vue b/app/javascript/dashboard/modules/notes/components/ContactNote.vue
index d29c5e7b0..b781d9639 100644
--- a/app/javascript/dashboard/modules/notes/components/ContactNote.vue
+++ b/app/javascript/dashboard/modules/notes/components/ContactNote.vue
@@ -21,9 +21,19 @@
size="tiny"
icon="delete"
color-scheme="secondary"
- @click="onDelete"
+ @click="toggleDeleteModal"
/>
+