diff --git a/x-pack/legacy/plugins/uptime/public/components/functional/monitor_list/__tests__/__snapshots__/monitor_list.test.tsx.snap b/x-pack/legacy/plugins/uptime/public/components/functional/monitor_list/__tests__/__snapshots__/monitor_list.test.tsx.snap index 4af52c20678db..78d1887e669b5 100644 --- a/x-pack/legacy/plugins/uptime/public/components/functional/monitor_list/__tests__/__snapshots__/monitor_list.test.tsx.snap +++ b/x-pack/legacy/plugins/uptime/public/components/functional/monitor_list/__tests__/__snapshots__/monitor_list.test.tsx.snap @@ -24,14 +24,6 @@ exports[`MonitorList component renders a no items message when no data is provid { { return { @@ -135,38 +136,6 @@ export const MonitorListComponent = (props: Props) => { // TODO: reintegrate sorting in future release // sorting={sorting} columns={[ - { - align: 'left', - field: 'monitor_id', - name: '', - sortable: true, - width: '40px', - render: (id: string) => { - return ( - item === id) ? 'arrowUp' : 'arrowDown'} - onClick={() => { - if (drawerIds.find(i => id === i)) { - updateDrawerIds(drawerIds.filter(p => p !== id)); - } else { - updateDrawerIds([...drawerIds, id]); - } - }} - /> - ); - }, - }, { align: 'left', field: 'state.monitor.status', @@ -214,6 +183,9 @@ export const MonitorListComponent = (props: Props) => { name: i18n.translate('xpack.uptime.monitorList.monitorHistoryColumnLabel', { defaultMessage: 'Downtime history', }), + mobileOptions: { + show: false, + }, render: (histogramSeries: SummaryHistogramPoint[] | null) => ( { ), }, { + id: 'actions', align: 'right', field: 'state', + hasActions: true, + mobileOptions: { + header: false, + }, name: i18n.translate( 'xpack.uptime.monitorList.observabilityIntegrationsColumnLabel', { @@ -238,6 +215,39 @@ export const MonitorListComponent = (props: Props) => { ), }, + { + align: 'left', + field: 'monitor_id', + name: '', + sortable: true, + width: '40px', + isExpander: true, + render: (id: string) => { + return ( + item === id) ? 'arrowUp' : 'arrowDown'} + onClick={() => { + if (drawerIds.find(i => id === i)) { + updateDrawerIds(drawerIds.filter(p => p !== id)); + } else { + updateDrawerIds([...drawerIds, id]); + } + }} + /> + ); + }, + }, ]} />