Display zero values in grey
This commit is contained in:
@ -19,3 +19,8 @@ func (n Numeric) GetPositive() bool {
|
||||
float := n.GetFloat64()
|
||||
return float >= 0
|
||||
}
|
||||
|
||||
func (n Numeric) IsZero() bool {
|
||||
float := n.GetFloat64()
|
||||
return float == 0
|
||||
}
|
||||
|
Reference in New Issue
Block a user