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({ ...@@ -28,7 +28,7 @@ const ColumnCallstack = () => Column({
label: 'Callstack', label: 'Callstack',
title: 'Context of the evaluation', title: 'Context of the evaluation',
align: 'left', align: 'left',
width: 100, width: 150,
render: CallstackRenderer, render: CallstackRenderer,
}); });
...@@ -108,6 +108,7 @@ const Values = () => { ...@@ -108,6 +108,7 @@ const Values = () => {
label={name && `${name} (before)`} label={name && `${name} (before)`}
title="Values inferred by Eva just before the selected point" title="Values inferred by Eva just before the selected point"
disableSort disableSort
width={300}
/> />
<ColumnAlarm visible={!!name} /> <ColumnAlarm visible={!!name} />
<Column <Column
...@@ -116,6 +117,7 @@ const Values = () => { ...@@ -116,6 +117,7 @@ const Values = () => {
label={name && `${name} (after)`} label={name && `${name} (after)`}
title="Values inferred by Eva just after the selected point" title="Values inferred by Eva just after the selected point"
disableSort disableSort
width={300}
/> />
</Table> </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