Skip to content

Commit

Permalink
overridden: frontsite: Acquisition: Add htmlFor attribute to label ta…
Browse files Browse the repository at this point in the history
…gs in parameterized component
  • Loading branch information
sakshamarora1 committed Feb 6, 2024
1 parent a556d41 commit a257a59
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ui/src/overridden/backoffice/Acquisition/OrderDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ export const OrderDetailsMiddleColumn = ({ line }) => {
return (
<>
<Item.Description>
<label>Copies ordered: </label>
<label htmlFor="Copies ordered">Copies ordered: </label>
{line.copies_ordered}
</Item.Description>
<Item.Description>
<label>Copies received: </label>
<label htmlFor="Copies received">Copies received: </label>
{line.copies_received || "-"}
</Item.Description>
<Item.Description>
<label>Payment mode: </label>
<label htmlFor="Payment mode">Payment mode: </label>
{line.payment_mode || "-"}
</Item.Description>
<Item.Description>
<label>TID ID: </label>
<label htmlFor="TID ID">TID ID: </label>
{line.inter_departmental_transaction_id || "-"}{" "}
<Popup
content="Inter departmental transaction ID"
Expand Down

0 comments on commit a257a59

Please sign in to comment.