https://bz.apache.org/bugzilla/show_bug.cgi?id=66274
Bug ID: 66274
Summary: I need to add Total column as shown below. So far my
code looks like this. What is the best way to archive
that?
Product: Apache httpd-2
Version: 2.5-HEAD
Hardware: PC
Status: NEW
Severity: normal
Priority: P2
Component: support
Assignee: [email protected]
Reporter: [email protected]
Target Milestone: ---
<div></div>
<div className="shiftmb_header">Frz</div>
<div className="shiftmb_header">Clr</div>
<div className="shiftmb_header">Dry</div>
<div className=" forksHeader">Forks</div>
<div className="subheader_mb_shift"><div>Active FL</div>
<div>Pallets/Hr</div>
<div>Pallets Done</div>
<div>Pallets Left</div>
<div>Hours Remaing</div>
</div>
{
props.sdata.sfDetails && props.sdata.sfDetails
.map(data => {
const dmdData =
props.sdata.shiftDDDDDDetails.find(dmdRow => dmdRow.area == data.area);
return data.area === 'Total' ? null : <div
className="subheader_mb_shift">
<div>{data.put_active}</div>
<div>{(props.day) ?
isNaN(parseFloat(data.put_pal).toFixed(1)) ? 0 :
parseFloat(data.put_pal).toFixed(1) :
isNaN(parseFloat(dmdData.pal_hr).toFixed(1)) ? 0 :
parseFloat(dmdData.pal_hr).toFixed(1)}</div>
<div>{props.day ? data.put_done || 0 :
data.dmd_done}</div>
<div>{props.day ? data.put_left || 0 :
data.dmd_left}</div>
<div>{props.day ?
isNaN(parseFloat(data.put_hour).toFixed(1)) ? 0 :
parseFloat(data.dmd_hour).toFixed(1) : ''}</div>
</div>
})
}
</div>```
https://freefirebattles.com/which-game-comes-first-pubg-or-free-fire/
https://inshotapps.com/
--
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]