We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98bc471 commit b7042bfCopy full SHA for b7042bf
src/components/widgets/resources/network.jsx
@@ -37,8 +37,8 @@ export default function Network({ options, refresh = 1500 }) {
37
icon={FaNetworkWired}
38
value={`${t("common.byterate", { value: data.network.tx_sec })} ↑`}
39
label={`${t("common.byterate", { value: data.network.rx_sec })} ↓`}
40
- expandedValue={`${t("common.bbytes", { value: data.network.tx_bytes })} ↑`}
41
- expandedLabel={`${t("common.bbytes", { value: data.network.rx_bytes })} ↓`}
+ expandedValue={`${t("common.bytes", { value: data.network.tx_bytes })} ↑`}
+ expandedLabel={`${t("common.bytes", { value: data.network.rx_bytes })} ↓`}
42
expanded={options.expanded}
43
wide
44
percentage={(100 * data.network.rx_sec) / (data.network.rx_sec + data.network.tx_sec)}
0 commit comments