Skip to content

Commit 226dbfc

Browse files
committed
Title case the TX RX locations
Fix #14
1 parent 0e23211 commit 226dbfc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site2/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ export default class App extends React.Component<IProps, IState> {
157157

158158
this.setState({
159159
dataSource: dataSource,
160-
p2plinks: p2plinks,
160+
p2plinks: p2plinks.map(l => ({...l, tx_name: capitalize(l.tx_name), rx_name: capitalize(l.rx_name)})),
161161
});
162162
this.updateLayers();
163163
}

0 commit comments

Comments
 (0)