Changes in Contact Profile.

This commit is contained in:
Kartik Sharma 2025-07-26 10:44:02 +05:30
parent 236f1b23ac
commit 740a730f7a

View File

@ -117,23 +117,28 @@ const NotesDirectory = ({
return ( return (
<div className="text-start mt-10"> <div className="text-start mt-10">
<div className="d-flex align-items-center justify-content-between"> <div className="d-flex align-items-center justify-content-between">
<div className="row w-100 align-items-center"> <p className="fw-semibold m-0 ms-3">Notes :</p>
<div className="col col-2"> </div>
<p className="fw-semibold m-0 ms-3">Notes :</p> <div className="d-flex align-items-center justify-content-between mb-5">
</div> <div className="m-0 d-flex align-items-center ms-2 mt-5">
<div className="col d-flex justify-content-end gap-2 pe-0"> {(contactProfile?.notes?.length > 0 || contactNotes?.length > 0) && (
{" "} <label className="switch switch-primary">
<div className="d-flex align-items-center justify-content-between"> <input
<label type="checkbox"
className="switch switch-primary" className="switch-input"
style={{ onChange={handleSwitch}
visibility: checked={!IsActive}
contactProfile?.notes?.length > 0 || />
contactNotes?.length > 0 <span className="switch-toggle-slider">
? "visible" <span className="switch-on"></span>
: "hidden", <span className="switch-off"></span>
}} </span>
> <span className="switch-label">Include Deleted Notes</span>
</label>
)}
{!(contactProfile?.notes?.length > 0 || contactNotes?.length > 0) && (
<div style={{ visibility: "hidden" }}>
<label className="switch switch-primary">
<input type="checkbox" className="switch-input" /> <input type="checkbox" className="switch-input" />
<span className="switch-toggle-slider"> <span className="switch-toggle-slider">
<span className="switch-on"></span> <span className="switch-on"></span>