Skip to content

Commit

Permalink
Merge pull request #7046 from TheThingsNetwork/fix/frame-counters-comma
Browse files Browse the repository at this point in the history
Remove comma from frame counters in the device title section
  • Loading branch information
ryaplots authored Apr 23, 2024
2 parents 61ce877 + e708e4b commit 10e4f6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/webui/console/containers/device-title-section/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const DeviceTitleSection = props => {
showAppDownlinkCount && showNwkDownlinkCount ? (
<>
<FormattedNumber value={downlinkAppFrameCount} /> {'(App) / '}
<FormattedNumber value={downlinkNwkFrameCount} /> {'(Nwk)'},
<FormattedNumber value={downlinkNwkFrameCount} /> {'(Nwk)'}
</>
) : showAppDownlinkCount ? (
<>
Expand Down

0 comments on commit 10e4f6b

Please sign in to comment.