element
width: table.getTotalSize(),
+ height: `${virtualizer.getTotalSize()}px`,
}}
>
@@ -113,6 +155,9 @@ export function TableV3(props: ITableV3Props): JSX.Element {
onDoubleClick: (): void => header.column.resetSize(),
onMouseDown: header.getResizeHandler(),
onTouchStart: header.getResizeHandler(),
+ style: {
+ display: !header.column.getCanResize() ? 'none' : '',
+ },
className: `resizer ${
header.column.getIsResizing() ? 'isResizing' : ''
}`,
@@ -125,11 +170,16 @@ export function TableV3(props: ITableV3Props): JSX.Element {
{/* When resizing any column we will render this special memoized version of our table body */}
{table.getState().columnSizingInfo.isResizingColumn ? (
-
+
) : (
-
+
)}
);
}
+
+TableV3.defaultProps = {
+ customClassName: '',
+ virtualiserRef: null,
+};
diff --git a/frontend/src/constants/reactQueryKeys.ts b/frontend/src/constants/reactQueryKeys.ts
index 30da4e1362..43fc6060f5 100644
--- a/frontend/src/constants/reactQueryKeys.ts
+++ b/frontend/src/constants/reactQueryKeys.ts
@@ -21,6 +21,7 @@ export const REACT_QUERY_KEY = {
GET_HOST_LIST: 'GET_HOST_LIST',
UPDATE_ALERT_RULE: 'UPDATE_ALERT_RULE',
GET_ACTIVE_LICENSE_V3: 'GET_ACTIVE_LICENSE_V3',
+ GET_TRACE_V2: 'GET_TRACE_V2',
GET_POD_LIST: 'GET_POD_LIST',
GET_NODE_LIST: 'GET_NODE_LIST',
GET_DEPLOYMENT_LIST: 'GET_DEPLOYMENT_LIST',
diff --git a/frontend/src/container/AppLayout/index.tsx b/frontend/src/container/AppLayout/index.tsx
index 8bb91d48c3..c313ef29d0 100644
--- a/frontend/src/container/AppLayout/index.tsx
+++ b/frontend/src/container/AppLayout/index.tsx
@@ -427,7 +427,7 @@ function AppLayout(props: AppLayoutProps): JSX.Element {
? 0
: '0 1rem',
- ...(isTraceDetailsView() ? { marginRight: 0 } : {}),
+ ...(isTraceDetailsView() ? { margin: 0 } : {}),
}}
>
{isToDisplayLayout && !renderFullScreen &&