diff --git a/packages/react-components/src/components/timegraph-output-component.tsx b/packages/react-components/src/components/timegraph-output-component.tsx
index 6c807161..0c3e8285 100644
--- a/packages/react-components/src/components/timegraph-output-component.tsx
+++ b/packages/react-components/src/components/timegraph-output-component.tsx
@@ -541,6 +541,7 @@ export class TimegraphOutputComponent extends AbstractTreeOutputComponent
@@ -556,6 +557,7 @@ export class TimegraphOutputComponent extends AbstractTreeOutputComponent
>
diff --git a/packages/react-components/src/components/utils/filter-tree/entry-tree.tsx b/packages/react-components/src/components/utils/filter-tree/entry-tree.tsx
index 1d06248b..cbdbda79 100644
--- a/packages/react-components/src/components/utils/filter-tree/entry-tree.tsx
+++ b/packages/react-components/src/components/utils/filter-tree/entry-tree.tsx
@@ -26,6 +26,7 @@ interface EntryTreeProps {
showHeader: boolean;
headers: ColumnHeader[];
className: string;
+ hideFillers?: boolean;
}
export class EntryTree extends React.Component {
diff --git a/packages/react-components/style/output-components-style.css b/packages/react-components/style/output-components-style.css
index f24365bd..3f8b5b7f 100644
--- a/packages/react-components/style/output-components-style.css
+++ b/packages/react-components/style/output-components-style.css
@@ -307,18 +307,19 @@ canvas {
.timegraph-tree {
border-collapse: collapse;
+ border: none;
}
.timegraph-tree tr {
/* TODO: Fix row alignment, this number is arbitrary, it works [on my machine], but it should match line height in timeline-chart */
line-height: 18px;
- border:none;
}
.timegraph-tree td {
padding: 1px;
border-left: 1px solid var(--trace-viewer-tree-inactiveIndentGuidesStroke);
- border-bottom:none;
+ border-right: none;
+ border-bottom: none;
}
#input-filter-container {