Unverified Commit 46050a21 authored by Palash Gupta's avatar Palash Gupta Committed by GitHub
Browse files

feat: all trace now open in new tab (#1662)

Showing with 1 addition and 2 deletions
+1 -2
......@@ -3,7 +3,6 @@ import Table, { ColumnsType } from 'antd/lib/table';
import ROUTES from 'constants/routes';
import dayjs from 'dayjs';
import duration from 'dayjs/plugin/duration';
import history from 'lib/history';
import omit from 'lodash-es/omit';
import React from 'react';
import { useDispatch, useSelector } from 'react-redux';
......@@ -195,7 +194,7 @@ function TraceTable(): JSX.Element {
onClick: (event): void => {
event.preventDefault();
event.stopPropagation();
history.push(getLink(record));
window.open(getLink(record));
},
})}
pagination={{
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment