mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-29 04:14:52 +03:00
search: fix typeerror by removing device
This commit is contained in:
parent
6bd238b813
commit
ba74b59a2f
@ -33,7 +33,7 @@ ScrollView {
|
||||
})
|
||||
for (var i = 0; i < entries.count; i++) {
|
||||
var entry = entries.get(i)
|
||||
if (entry !== null && entry !== undefined) {
|
||||
if (!!entry && !!entry.credential) {
|
||||
if (entry.credential.key.toLowerCase().indexOf(
|
||||
toolBar.searchField.text.toLowerCase(
|
||||
)) !== -1) {
|
||||
|
Loading…
Reference in New Issue
Block a user