Skip to content

Commit

Permalink
catch up with getredash#3102
Browse files Browse the repository at this point in the history
  • Loading branch information
Allen Short committed Jan 14, 2019
1 parent aecb48e commit 62452df
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions client/app/visualizations/chart/ChartEditor.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ export default class ChartEditor extends React.Component {
<label htmlFor="chart-editor-number-format">
Number Values Format
<PopoverHelp>
Format <a href="http://numeraljs.com/" rel="noopener noreferrer" target="_blank">specs.</a>
Format <a href="https://redash.io/help/user-guide/visualizations/formatting-numbers" rel="noopener noreferrer" target="_blank">specs.</a>
</PopoverHelp>
</label>
<input className="form-control" value={opts.numberFormat} onChange={this.updateNumberFormat} id="chart-editor-number-format" />
Expand All @@ -618,7 +618,7 @@ export default class ChartEditor extends React.Component {
<label htmlFor="chart-editor-percent-format">
Percent Values Format
<PopoverHelp>
Format <a href="http://numeraljs.com/" rel="noopener noreferrer" target="_blank">specs.</a>
Format <a href="https://redash.io/help/user-guide/visualizations/formatting-numbers" rel="noopener noreferrer" target="_blank">specs.</a>
</PopoverHelp>
</label>
<input className="form-control" value={opts.percentFormat} onChange={this.updatePercentFormat} id="chart-editor-percent-format" />
Expand Down
2 changes: 1 addition & 1 deletion client/app/visualizations/choropleth/ChoroplethEditor.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export default class ChoroplethEditor extends React.Component {
const opts = this.props.options;
const formatSpecsPopover = (
<React.Fragment>
Format <a href="http://numeraljs.com/" rel="noopener noreferrer" target="_blank">specs.</a>
Format <a href="https://redash.io/help/user-guide/visualizations/formatting-numbers" rel="noopener noreferrer" target="_blank">specs.</a>
</React.Fragment>);
const templateHintPopover = (
<React.Fragment>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export default function TableEditorColumnDetail({ updateColumn, column }) {
);
const numberPopover = (
<React.Fragment>
Format <a href="http://numeraljs.com/#format" rel="noopener noreferrer" target="_blank">specs.</a>
Format <a href="https://redash.io/help/user-guide/visualizations/formatting-numbers" rel="noopener noreferrer" target="_blank">specs.</a>
</React.Fragment>
);
const numberColumn = (
Expand Down

0 comments on commit 62452df

Please sign in to comment.