Correction in HoverPopup when it we select single the all will be open.

This commit is contained in:
Kartik Sharma 2025-11-18 16:57:48 +05:30
parent 2cb9b41f98
commit 1c5d62f5ed
2 changed files with 6 additions and 0 deletions

View File

@ -202,6 +202,7 @@ const TaskReportList = () => {
<span> <span>
Total Pending{" "} Total Pending{" "}
<HoverPopup <HoverPopup
id="total_pending_task"
title="Total Pending Task" title="Total Pending Task"
content={<p>This shows the total pending tasks for each activity on that date.</p>} content={<p>This shows the total pending tasks for each activity on that date.</p>}
> >
@ -213,6 +214,7 @@ const TaskReportList = () => {
<span> <span>
Reported/Planned{" "} Reported/Planned{" "}
<HoverPopup <HoverPopup
id="reportes_and_planned_task"
title="Reported and Planned Task" title="Reported and Planned Task"
content={<p>This shows the reported versus planned tasks for each activity on that date.</p>} content={<p>This shows the reported versus planned tasks for each activity on that date.</p>}
> >

View File

@ -241,6 +241,7 @@ const ManageRecurringExpense = ({ closeModal, requestToEdit = null }) => {
</Label> </Label>
<HoverPopup <HoverPopup
title="Payment Type" title="Payment Type"
id="payment_type"
content={ content={
<p> <p>
Choose whether the payment amount varies or remains fixed each cycle. Choose whether the payment amount varies or remains fixed each cycle.
@ -387,6 +388,7 @@ const ManageRecurringExpense = ({ closeModal, requestToEdit = null }) => {
</Label> </Label>
<HoverPopup <HoverPopup
title="Frequency" title="Frequency"
id="frequency"
content={ content={
<p> <p>
Defines how often payments or billing occur, such as monthly, quarterly, or annually. Defines how often payments or billing occur, such as monthly, quarterly, or annually.
@ -450,6 +452,7 @@ const ManageRecurringExpense = ({ closeModal, requestToEdit = null }) => {
</Label> </Label>
<HoverPopup <HoverPopup
title="Payment Buffer Days" title="Payment Buffer Days"
id="payment_buffer_days"
content={ content={
<p> <p>
Number of extra days allowed after the due date before payment is considered late. Number of extra days allowed after the due date before payment is considered late.
@ -485,6 +488,7 @@ const ManageRecurringExpense = ({ closeModal, requestToEdit = null }) => {
</Label> </Label>
<HoverPopup <HoverPopup
title="End Date" title="End Date"
id="end_date"
content={ content={
<p> <p>
The date when the last payment in the recurrence occurs. The date when the last payment in the recurrence occurs.