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:
parent
bbf98b4d52
commit
f9be68f98a
6 changed files with 74 additions and 32 deletions
|
|
@ -103,7 +103,7 @@ const ECol = ({
|
|||
textAlign,
|
||||
suffix,
|
||||
SuffixComponent = TL2,
|
||||
view = it => it?.toString(),
|
||||
view = it => (!it ? '-' : it.toString()),
|
||||
inputProps = {}
|
||||
} = config
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue