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> <li>
<button <button
className="dropdown-item py-1 px-2" className="dropdown-item py-1 px-2 small text-primary"
onClick={() => setEditing(true)} 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> </button>
</li> </li>
<li> <li>
<button <button
className="dropdown-item py-1 px-2 text-danger" className="dropdown-item py-1 px-2 text-danger small"
onClick={()=>{}} onClick={()=>{}}
> >
<i className="bx bx-trash me-1"></i> Delete <i className="bx bx-trash bx-sm me-1"></i> Delete
</button> </button>
</li> </li>
</ul> </ul>