Update View.js (#450)

Switched UL and DL values as they were reversed (DL showing UL & UL showing DL)
This commit is contained in:
Nick
2020-05-27 11:02:31 +10:00
committed by GitHub
parent 9bfb4591ea
commit 1494cd9fec

View File

@@ -236,11 +236,11 @@ const View = ({ visible, disableOnClickOutside, subscriber, onEdit, onDelete, on
<div className="right">
<div className="data">
{ambr.downlink} Kbps
<span style={{color:oc.gray[5]}}><KeyboardControlIcon/>UL</span>
<span style={{color:oc.gray[5]}}><KeyboardControlIcon/>DL</span>
</div>
<div className="data">
{ambr.uplink} Kbps
<span style={{color:oc.gray[5]}}><KeyboardControlIcon/>DL</span>
<span style={{color:oc.gray[5]}}><KeyboardControlIcon/>UL</span>
</div>
</div>
</div>