Skip to content

Commit

Permalink
feat(client): overall page add build time line
Browse files Browse the repository at this point in the history
  • Loading branch information
easy1090 committed Dec 21, 2023
1 parent 6c71f6f commit 7a99c18
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion packages/components/src/components/Charts/loader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ export const LoaderExecutionsChart: React.FC<ChartProps> = ({ loaders, cwd }) =>
const groupByLoader = useMemo(() => groupBy(loaders, (e) => e.loader), [loaders]);

const formatterForLoader = useCallback((raw: any) => {
console.log('loader raw:::::::', raw)
const { name, data } = raw;
const loaderName = name.replace(' total', '');
if (data?.ext) {
Expand Down
2 changes: 0 additions & 2 deletions packages/components/src/components/Charts/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,6 @@ function loop(dur: DurationMetric[], target: DurationMetric) {
}

export function formatterForPlugins(raw: { data: { ext: ITraceEventData }}) {

console.log('raw::::::111', raw);
const { ext } = raw.data;
return `
<div class="loader-tooltip-container">
Expand Down

0 comments on commit 7a99c18

Please sign in to comment.