mirror of
https://github.com/mattermost/focalboard.git
synced 2025-01-23 18:34:02 +02:00
fix: toString
propertyValue
for lowercasing (#4211)
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
This commit is contained in:
parent
6b28be7043
commit
aca0107b34
@ -358,7 +358,7 @@ function searchFilterCards(cards: Card[], board: Board, searchTextRaw: string):
|
||||
if (options?.includes(searchText)) {
|
||||
return true
|
||||
}
|
||||
} else if ((propertyValue as string).toLowerCase().includes(searchText)) {
|
||||
} else if ((propertyValue.toString()).toLowerCase().includes(searchText)) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user