pramod_Task-#251: A "Notes" section appears in the contact view modal, allowing users to add a note for the selected contact. #124

Merged
pramod.mahajan merged 26 commits from pramod_Task-#251 into Feature_Directory 2025-05-21 11:00:04 +00:00
Showing only changes of commit e331208b3e - Show all commits

View File

@ -75,18 +75,18 @@ const NoteCardDirectory = ({ noteItem, contactId,setProfileContact }) => {
>
<li>
<button
className="dropdown-item py-1 px-2"
className="dropdown-item py-1 px-2 small text-primary"
onClick={() => setEditing(true)}
>
<i className="bx bx-edit-alt me-1"></i> Edit
<i className="bx bxs-edit bx-sm me-1"></i> Edit
</button>
</li>
<li>
<button
className="dropdown-item py-1 px-2 text-danger"
className="dropdown-item py-1 px-2 text-danger small"
onClick={()=>{}}
>
<i className="bx bx-trash me-1"></i> Delete
<i className="bx bx-trash bx-sm me-1"></i> Delete
</button>
</li>
</ul>