Skip to content
Snippets Groups Projects
Commit 773d21ee authored by David Bühler's avatar David Bühler
Browse files

[ivette] Values panel: fixes the columns width.

parent 0c39c545
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ const ColumnCallstack = () => Column({
label: 'Callstack',
title: 'Context of the evaluation',
align: 'left',
width: 100,
width: 150,
render: CallstackRenderer,
});
......@@ -108,6 +108,7 @@ const Values = () => {
label={name && `${name} (before)`}
title="Values inferred by Eva just before the selected point"
disableSort
width={300}
/>
<ColumnAlarm visible={!!name} />
<Column
......@@ -116,6 +117,7 @@ const Values = () => {
label={name && `${name} (after)`}
title="Values inferred by Eva just after the selected point"
disableSort
width={300}
/>
</Table>
</>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment