* Fix ramcost for corporation.bonusTime (must be 0 because other getBonusTime functions exist).
* Fix ui hook names for overview.
This commit is contained in:
omuretsu 2023-01-03 12:23:38 -05:00
parent 1670be1573
commit bb566dc57c
2 changed files with 2 additions and 2 deletions

@ -369,7 +369,7 @@ const corporation = {
issueDividends: RamCostConstants.Corporation,
buyBackShares: RamCostConstants.Corporation,
sellShares: RamCostConstants.Corporation,
getBonusTime: RamCostConstants.Corporation,
getBonusTime: 0,
sellMaterial: RamCostConstants.Corporation,
sellProduct: RamCostConstants.Corporation,
discontinueProduct: RamCostConstants.Corporation,

@ -148,7 +148,7 @@ export function DataRow({ name, showBar, color, cellType }: DataRowProps): React
<Val name={name} color={color} />
</TableCell>
<TableCell align="right" classes={{ root: classes[cellType] }}>
<Typography id={"overview-" + name + "-hook"} color={color}>
<Typography id={"overview-" + name.toLowerCase() + "-hook"} color={color}>
{}
</Typography>
</TableCell>