We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ebeb01 commit 8386be5Copy full SHA for 8386be5
1 file changed
SingularityUI/app/components/requestDetail/CostsView.jsx
@@ -43,13 +43,20 @@ const CostsView = ({requestId, costsAPI}) => {
43
key="costType"
44
cellData={(c) => Utils.humanizeText(c.costType)}
45
/>
46
+ <Column
47
+ label="Monthly Emissions"
48
+ id="monthlyEmissions"
49
+ key="monthlyEmissions"
50
+ cellData={(c) => c.monthlyEmissions}
51
+ cellRender={(e) => e + ' MTCO2e'}
52
+ />
53
<Column
54
label="Cost"
55
id="cost"
56
key="cost"
57
forceSortHeader={true}
58
cellData={(c) => c.cost}
- cellRender={(c) => '$' + c}
59
+ cellRender={(c) => '$' + c + ' /day'}
60
61
</UITable>
62
</CollapsableSection>
0 commit comments