Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FEATURE/HCMPRE-0112: Mandatory Sign for assumptions and Formula Screen #2281

Open
wants to merge 5 commits into
base: console
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ export const DataMgmtComponent = ({ customProps, setupCompleted }) => {
}} // Passing the download function
status="completed"
rowDetails={item}



/>
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ const FileComponent = ({ title, fileName, status, auditDetails, editHandler, del
Digit.Utils.campaign.downloadExcelWithCustomName({ fileStoreId: file?.filestoreId, customName: fileNameWithoutExtension });
}
};

return (
<Card type="secondary">
<div className="dm-parent-container" style={{ background: "#FAFAFA", margin: "0" }}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,7 @@ const FormulaConfiguration = ({ onSelect, category, customProps, formulas: initi
<LabelFieldPair className="formula-label-field">
<span className="assumption-label-icon-wrapper">
<span className="assumption-label-icon-wrapper-label">{`${t(formula.output)}`}</span>
<span className="mandatory-span">*</span>
{category === "CAMPAIGN_VEHICLES" || formula?.source === "CUSTOM" ? null : (
<span className="icon-wrapper">
<TooltipWrapper
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ const Hypothesis = ({ category, assumptions: initialAssumptions, setShowToast, a
<div className="assumption-label">
<span className="assumption-label-icon-wrapper">
<span className="assumption-label-icon-wrapper-label">{`${t(item)}`}</span>
{/* {category === "CAMPAIGN_VEHICLES" || sourceCheck === "CUSTOM" ? null : <span className="mandatory-span">*</span>} */}
{category === "CAMPAIGN_VEHICLES" || sourceCheck === "CUSTOM" ? null : <span className="mandatory-span">*</span>}
{category === "CAMPAIGN_VEHICLES" || sourceCheck === "CUSTOM" ? null : (
<span className="icon-wrapper">
<TooltipWrapper
Expand All @@ -172,7 +172,7 @@ const Hypothesis = ({ category, assumptions: initialAssumptions, setShowToast, a
</span>
)}
</span>
</div>
</div>

<div className="fieldv1-deleteIcon-container">
<FieldV1
Expand Down