Skip to content

Commit 1c80ede

Browse files
tweaks
1 parent c3b07f0 commit 1c80ede

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

src/components/containers/TraceRequiredPanel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class TraceRequiredPanel extends Component {
2323
<p>
2424
{_('Go to the ')}
2525
<a onClick={() => this.context.setPanel('Structure', 'Traces')}>{_('Traces')}</a>
26-
{_(' panel to define traces.')}
26+
{_(' panel under Structure to define traces.')}
2727
</p>
2828
</PanelEmpty>
2929
);

src/default_panels/GraphCreatePanel.js

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,21 +67,27 @@ const GraphCreatePanel = (props, {localize: _, setPanel}) => {
6767
'Note: in vertical orientation, X values are used for binning. If Y values are provided, they are used as inputs to the histogram function which you can configure in the '
6868
)}
6969
<a onClick={() => setPanel('Style', 'Traces')}>{_('Traces')}</a>
70-
{_(' panel. If Y values are omitted, the histogram function defaults to Count.')}
70+
{_(
71+
' panel under Style. If Y values are omitted, the histogram function defaults to Count.'
72+
)}
7173
</HistogramInfoVertical>
7274
<HistogramInfoHorizontal>
7375
{_(
7476
'Note: in horizontal orientation, Y values are used for binning. If X values are provided, they are used as inputs to the histogram function which you can configure in the '
7577
)}
7678
<a onClick={() => setPanel('Style', 'Traces')}>{_('Traces')}</a>
77-
{_(' panel. If X values are omitted, the histogram function defaults to Count.')}
79+
{_(
80+
' under Style panel. If X values are omitted, the histogram function defaults to Count.'
81+
)}
7882
</HistogramInfoHorizontal>
7983
<Histogram2d>
8084
{_(
8185
'Note: X and Y Values are used for binning. If Z values are provided, they are used as inputs to the histogram function which you can configure in the '
8286
)}
8387
<a onClick={() => setPanel('Style', 'Traces')}>{_('Traces')}</a>
84-
{_(' panel. If Z values are omitted, the histogram function defaults to Count.')}
88+
{_(
89+
' under Style panel. If Z values are omitted, the histogram function defaults to Count.'
90+
)}
8591
</Histogram2d>
8692
<DataSelector label={_('I (Optional)')} attr="i" />
8793
<DataSelector label={_('J (Optional)')} attr="j" />

0 commit comments

Comments
 (0)