mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
parent
99fbe57d80
commit
9e3c23004c
1 changed files with 2 additions and 2 deletions
|
@ -1100,11 +1100,11 @@ export class TimeSeriesExplorer extends React.Component {
|
|||
/>
|
||||
)}
|
||||
|
||||
{(jobs.length > 0 && loading === false && hasResults === false) && (
|
||||
{(jobs.length > 0 && (fullRefresh === false || loading === false) && hasResults === false) && (
|
||||
<TimeseriesexplorerNoChartData dataNotChartable={dataNotChartable} entities={entities} />
|
||||
)}
|
||||
|
||||
{(jobs.length > 0 && loading === false && hasResults === true) && (
|
||||
{(jobs.length > 0 && (fullRefresh === false || loading === false) && hasResults === true) && (
|
||||
<EuiText className="results-container">
|
||||
<span className="panel-title">
|
||||
{i18n.translate('xpack.ml.timeSeriesExplorer.singleTimeSeriesAnalysisTitle', {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue