Fix item name search filter

This commit is contained in:
Gabriel Tofvesson 2024-10-25 19:05:37 +02:00
parent a0a5829d84
commit 798c3e4993

View File

@ -494,7 +494,7 @@ local PAGES = {
return false
else
local name = stack:getSimpleName()
return matchFilter(pageState.filter, name) or (name:find(":") ~= nil and matchFilter(pageState.filter, stack:getName()))
return matchFilter(pageState.filter, name) or (pageState.filter:find(":") ~= nil and matchFilter(pageState.filter, stack:getName()))
end
end))
table.sort(pageState.stacks, SORT_MODE[pageState.sortMode])