Skip to content

Commit

Permalink
Hover over formulaConfigView
Browse files Browse the repository at this point in the history
  • Loading branch information
abishekTa-egov committed Nov 12, 2024
1 parent 2872f27 commit 0b88abb
Showing 1 changed file with 18 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,15 @@ const FormulaView = ({ output = "N/A", input1 = "N/A", input2 = "N/A", input3 =
type="text"
value={t(input1)}
nonEditable={true}
style={{ width: "100%" }}
style={{
width: "100%",
padding: "8px",
border: "1px solid #ccc",
borderRadius: "4px",
cursor: "pointer",
boxSizing: "border-box"
}}
title={t(input1)}
/>
<TextInput
type="text"
Expand All @@ -38,7 +46,15 @@ const FormulaView = ({ output = "N/A", input1 = "N/A", input2 = "N/A", input3 =
type="text"
value={t(input3)}
nonEditable={true}
style={{ width: "100%" }}
style={{
width: "100%",
padding: "8px",
border: "1px solid #ccc",
borderRadius: "4px",
cursor: "pointer",
boxSizing: "border-box"
}}
title={t(input3)}
/>
</LabelFieldPair>

Expand Down

0 comments on commit 0b88abb

Please sign in to comment.