fix: make table fields show a '-' instead of an empty string when the

col content is null

fix: make all notifications fields optional

fix: make the notifications overrides fields valid only if the machine/
cryptocurrency and at least one of the other options are filled
This commit is contained in:
Liordino Neto 2020-10-06 17:59:27 -03:00 committed by Josh Harvey
parent bbf98b4d52
commit f9be68f98a
6 changed files with 74 additions and 32 deletions

View file

@ -103,7 +103,7 @@ const ECol = ({
textAlign,
suffix,
SuffixComponent = TL2,
view = it => it?.toString(),
view = it => (!it ? '-' : it.toString()),
inputProps = {}
} = config