Remove View in Discover button (#137315)

This commit is contained in:
Byron Hulcher 2022-07-27 15:11:34 -04:00 committed by GitHub
parent 93c38fee22
commit 374a3f0458
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,6 @@
import React from 'react';
import { EuiButton } from '@elastic/eui';
import { i18n } from '@kbn/i18n';
import { DataPanel } from '../../../../../shared/data_panel/data_panel';
@ -30,16 +29,6 @@ export const CrawlRequestsPanel: React.FC = () => (
defaultMessage:
"Recent crawl requests are logged here. You can track progress and examine crawl events in Kibana's Discover or Logs user intefaces",
})}
action={
<EuiButton size="s" color="primary">
{i18n.translate(
'xpack.enterpriseSearch.crawler.crawlRequestsPanel.viewInDiscoverButtonLabel',
{
defaultMessage: 'View in Discover',
}
)}
</EuiButton>
}
>
<CrawlRequestsTable />
</DataPanel>