Skip to content

Commit

Permalink
Fix duration size
Browse files Browse the repository at this point in the history
  • Loading branch information
carbonrobot committed Oct 24, 2023
1 parent 895eec5 commit 1056e41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/webui/src/components/ui/TraceList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function getRequestDuration(trace: Trace) {
const columns: [string, (x: Trace) => string | number | React.ReactNode, string, (x: Trace) => string][] = [
['Method', getMethodAndStatus, 'w-[40px] md:w-[125px] overflow-hidden text-center', pillStyle],
['Request', getRequestURI, '', () => 'whitespace-nowrap overflow-hidden overflow-ellipsis'],
['Duration', getRequestDuration, 'w-[75px] text-right', () => 'text-sm'],
['Duration', getRequestDuration, 'text-right', () => 'text-sm'],
];

type TraceListProps = React.HTMLAttributes<HTMLElement> & {
Expand Down

0 comments on commit 1056e41

Please sign in to comment.