File tree Expand file tree Collapse file tree 1 file changed +10
-9
lines changed
Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -82,10 +82,10 @@ export default class ResultsTable extends Component {
8282 key = { keyPrefix + 'header-total-polled' }
8383 text = "Total Polled"
8484 /> ,
85- < CellHeader
86- key = { keyPrefix + 'header-registed-votes' }
87- text = "Registered Votes"
88- /> ,
85+ // <CellHeader
86+ // key={keyPrefix + 'header-registed-votes'}
87+ // text="Registered Votes"
88+ // / >,
8989 ] )
9090 } </ tr >
9191 ) ;
@@ -188,10 +188,10 @@ export default class ResultsTable extends Component {
188188 value = { totalPolled }
189189 valuePercent = { totalPolled / totalElectors }
190190 /> ,
191- < CellNumber
192- key = { key + '-total-registered-voters' }
193- value = { totalElectors }
194- /> ,
191+ // <CellNumber
192+ // key={key + '-total-registered-voters'}
193+ // value={totalElectors}
194+ // / >,
195195 ] ) }
196196 </ tr >
197197 ) ;
@@ -289,7 +289,8 @@ export default class ResultsTable extends Component {
289289 } . bind ( this )
290290 ) ;
291291
292- const totalElectorsWithPostal = totalElectors + postalVotes ;
292+ const totalElectorsWithPostal = totalElectors ;
293+ // const totalElectorsWithPostal = totalElectors + postalVotes;
293294
294295 const _totalsRow = ( this . props . showTotals ) ?
295296 this . renderRow (
You can’t perform that action at this time.
0 commit comments