Skip to content
Snippets Groups Projects
Commit 977c4462 authored by Loïc Correnson's avatar Loïc Correnson Committed by Michele Alberti
Browse files

[Ivette] adjust columns of value component

parent 9ee53b74
No related branches found
No related tags found
No related merge requests found
...@@ -100,20 +100,18 @@ const Values = () => { ...@@ -100,20 +100,18 @@ const Values = () => {
<Column <Column
id="value_before" id="value_before"
visible={!!name} visible={!!name}
label={name && `${name} (before)`} label={name && (unchanged ? 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
fill
/> />
<ColumnAlarm visible={alarmOccurred} />
<Column <Column
id="value_after" id="value_after"
visible={!!name && !unchanged} visible={!!name && !unchanged}
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
fill
/> />
<ColumnAlarm visible={alarmOccurred} />
</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