Skip to content
This repository was archived by the owner on Aug 15, 2019. It is now read-only.

Commit 9ef4314

Browse files
igoroctavianoswederik
authored andcommitted
fix(MeasurementTableItem): Add separators to allow the use of colons (#121)
1 parent e5caf7b commit 9ef4314

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/components/measurementTable/MeasurementTableItem.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,10 @@ class MeasurementTableItem extends Component {
9696
>
9797
<div>
9898
<div className="measurementLocation">
99-
{this.props.t(this.props.measurementData.label)}
99+
{this.props.t(this.props.measurementData.label, {
100+
keySeparator: '>',
101+
nsSeparator: '|',
102+
})}
100103
</div>
101104
<div>{this.getDataDisplayText()}</div>
102105
<div className="rowActions">{actionButtons}</div>

0 commit comments

Comments
 (0)