Skip to content

Commit

Permalink
changed wording of sent/received to upload/download
Browse files Browse the repository at this point in the history
  • Loading branch information
Place1 committed Apr 7, 2020
1 parent b16986d commit 7384a63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/src/components/DeviceListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ export class DeviceListItem extends React.Component<Props> {
<td>{device.endpoint}</td>
</tr>
<tr>
<td>Sent</td>
<td>Download</td>
<td>{numeral(device.transmitBytes).format('0b')}</td>
</tr>
<tr>
<td>Received</td>
<td>Upload</td>
<td>{numeral(device.receiveBytes).format('0b')}</td>
</tr>
</>
Expand Down

0 comments on commit 7384a63

Please sign in to comment.