Skip to content

Commit

Permalink
[frontend] Number of entities tooltip message in widgets (#8597)
Browse files Browse the repository at this point in the history
  • Loading branch information
Archidoit authored Nov 19, 2024
1 parent 21bd73f commit 6125c71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const StixCoreObjectsHorizontalBars = ({
&& props.stixCoreObjectsDistribution
&& props.stixCoreObjectsDistribution.length > 0
) {
const { series, redirectionUtils } = buildWidgetProps(props.stixCoreObjectsDistribution, selection, 'Number of relationships');
const { series, redirectionUtils } = buildWidgetProps(props.stixCoreObjectsDistribution, selection, 'Number of entities');
return (
<WidgetHorizontalBars
series={series}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ const stixCoreObjectsMultiHorizontalBars = ({
});
const chartData = [
{
name: selection.label || t_i18n('Number of relationships'),
name: selection.label || t_i18n('Number of entities'),
data,
},
];
Expand Down

0 comments on commit 6125c71

Please sign in to comment.