aboutsummaryrefslogtreecommitdiff
path: root/src/components/Display/DisplayItem.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Display/DisplayItem.js')
-rw-r--r--src/components/Display/DisplayItem.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Display/DisplayItem.js b/src/components/Display/DisplayItem.js
index 472ae47..4bd1b97 100644
--- a/src/components/Display/DisplayItem.js
+++ b/src/components/Display/DisplayItem.js
@@ -14,7 +14,7 @@ const DisplayItem = (props) => {
<td className={item.Discount === 0 ? "disabledBorder" : ""}>{item.Discount}</td>
<td className={item.GST === props.defGSTValue ? "" : "warningBorder"}>{item.GST}</td>
<td>{item.HSN}</td>
- <td>{item.Price}</td>
+ <td>{item.TotalPrice}</td>
</tr>
);
}