Cope with percentages being missing.
This commit is contained in:
		
							parent
							
								
									68b7bee91e
								
							
						
					
					
						commit
						7438ccd7f0
					
				|  | @ -200,7 +200,11 @@ function fmt_num_thousands(num) { | |||
| } | ||||
| 
 | ||||
| function fmt_percent(num) { | ||||
|     return Math.round(num * 100) + '%'; | ||||
|     if (num === '') { | ||||
|         return 'N/A'; | ||||
|     } else { | ||||
|         return Math.round(num * 100) + '%'; | ||||
|     } | ||||
| } | ||||
| 
 | ||||
| function fmt_rate(obj, name, mode) { | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue