[Uptime] Fix accidentally introduced double URL column (#36844) (#36997)

This came with a merge conflict by mistake
This commit is contained in:
Andrew Cholakian 2019-05-23 12:57:07 -05:00 committed by GitHub
parent ea7faad921
commit a6a39f834c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 18 deletions

View file

@ -44,11 +44,6 @@ exports[`MonitorList component renders a monitor list without errors 1`] = `
"name": "URL",
"render": [Function],
},
Object {
"field": "ping.url.full",
"name": "URL",
"render": [Function],
},
Object {
"align": "right",
"field": "upSeries",

View file

@ -146,19 +146,6 @@ export const MonitorListComponent = ({
</EuiLink>
),
},
{
field: 'ping.url.full',
name: i18n.translate('xpack.uptime.monitorList.urlColumnLabel', {
defaultMessage: 'URL',
}),
render: (url: string, monitor: LatestMonitor) => (
<div>
<EuiLink href={url} target="_blank" color="text">
{url} <EuiIcon size="s" type="popout" color="subdued" />
</EuiLink>
</div>
),
},
{
field: 'ping.url.full',
name: i18n.translate('xpack.uptime.monitorList.urlColumnLabel', {