Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/components/widgets/TraceTypeSelector.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,9 @@ class TraceTypeSelector extends Component {
}

render() {
const {localize: _} = this.context;
return (
<Modal title="Select Chart Type">
<Modal title={_('Select Trace Type')}>
<div className="trace-grid">{this.renderCategories()}</div>
</Modal>
);
Expand Down
18 changes: 9 additions & 9 deletions src/lib/traceTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ export const categoryLayout = _ => [
chartCategory(_).SIMPLE,
chartCategory(_).WEB_GL,
chartCategory(_).DISTRIBUTIONS,
chartCategory(_).FINANCIAL,
chartCategory(_).MAPS,
chartCategory(_).SPECIALIZED,
chartCategory(_).MAPS,
chartCategory(_).FINANCIAL,
];

export const traceTypes = _ => [
Expand Down Expand Up @@ -195,13 +195,13 @@ export const traceTypes = _ => [
{
value: 'scatterpolargl',
icon: 'scatterpolar',
label: _('Scatter Polar GL'),
category: chartCategory(_).WEB_GL,
},
{
value: 'heatmapgl',
icon: 'heatmap',
label: _('Heatmap GL'),
label: _('Polar Scatter GL'),
category: chartCategory(_).WEB_GL,
},
// {
// value: 'heatmapgl',
// icon: 'heatmap',
// label: _('Heatmap GL'),
// category: chartCategory(_).WEB_GL,
// },
];