diff --git a/webview/src/components/Experiments/index.tsx b/webview/src/components/Experiments/index.tsx index 3971200783..63e382e54c 100644 --- a/webview/src/components/Experiments/index.tsx +++ b/webview/src/components/Experiments/index.tsx @@ -68,7 +68,9 @@ export const ExperimentsTable: React.FC<{ }> = ({ experiments: rawExperiments }) => { const [initialState, defaultColumn] = React.useMemo(() => { const initialState = {} - const defaultColumn: Partial> = {} + const defaultColumn: Partial> = { + width: 110 + } return [initialState, defaultColumn] }, []) @@ -83,7 +85,7 @@ export const ExperimentsTable: React.FC<{ if (id === 'workspace') return id return id.slice(0, 7) }, - width: 200 + width: 150 }, { Header: 'Timestamp', @@ -148,8 +150,8 @@ export const ExperimentsTable: React.FC<{ return ( <>
- +
@@ -163,6 +165,7 @@ const Experiments: React.FC<{ return (