Tidy up ui

This commit is contained in:
Thomas Nordquist
2019-06-17 18:27:19 +02:00
parent 4e982be613
commit 3d5a4af705
3 changed files with 18 additions and 4 deletions

View File

@@ -40,7 +40,7 @@ function ChartPreview(props: Props) {
const hasEnoughDataToDisplayDiagrams = props.treeNode.messageHistory.count() > 1
const addChartToPanelButton = hasEnoughDataToDisplayDiagrams ? (
<Tooltip title="Click to add to chart panel">
<Tooltip title="Add to chart panel">
<ShowChart
ref={chartIconRef}
className={props.classes.icon}
@@ -50,7 +50,7 @@ function ChartPreview(props: Props) {
/>
</Tooltip>
) : (
<Tooltip title="Click to add to chart panel, not enough data for preview">
<Tooltip title="Add to chart panel, not enough data for preview">
<ShowChart onClick={onClick} className={props.classes.icon} style={{ color: '#aaa' }} />
</Tooltip>
)