Merge branch 'Kartik_Bug#805' of https://git.marcoaiot.com/admin/marco.pms.web into Kartik_Bug#805

This commit is contained in:
Kartik Sharma 2025-07-26 11:34:32 +05:30
commit 019efafdbb

View File

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