parent
9aaea49e2c
commit
734d9361fc
|
@ -45,7 +45,9 @@ Rectangle {
|
||||||
ExpressionFilter {
|
ExpressionFilter {
|
||||||
expression: {
|
expression: {
|
||||||
var tokenSymbolByAddress = searchTokenSymbolByAddressFn(d.searchString)
|
var tokenSymbolByAddress = searchTokenSymbolByAddressFn(d.searchString)
|
||||||
return symbol.startsWith(d.searchString.toUpperCase()) || name.toUpperCase().startsWith(d.searchString.toUpperCase()) || (tokenSymbolByAddress!=="" && symbol.startsWith(tokenSymbolByAddress))
|
return networkVisible && (
|
||||||
|
symbol.startsWith(d.searchString.toUpperCase()) || name.toUpperCase().startsWith(d.searchString.toUpperCase()) || (tokenSymbolByAddress!=="" && symbol.startsWith(tokenSymbolByAddress))
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue