Skip to content

Commit

Permalink
Update FormulaView.js (#1695)
Browse files Browse the repository at this point in the history
  • Loading branch information
nipunarora-eGov authored Oct 28, 2024
1 parent 4b1391e commit b67c2a1
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ const FormulaView = ({ output="N/A", input1="N/A", input2="N/A", input3="N/A" })
{/* Inputs in a grid layout */}
<TextInput
type="text"
value={input1}
value={t(input1)}
nonEditable={true}
style={{ width: "100%" }}
/>
<TextInput
type="text"
value={input2}
value={t(input2)}
nonEditable={true}
style={{ width: "100%" }}
/>
<TextInput
type="text"
value={input3}
value={t(input3)}
nonEditable={true}
style={{ width: "100%" }}
/>
Expand Down

0 comments on commit b67c2a1

Please sign in to comment.