Skip to content

Commit 54cce53

Browse files
committed
Fix lint issue
1 parent f2304f5 commit 54cce53

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

[web]/performancebrowser/target.lua

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,7 @@ function Target:getLuaTimingRecordings( queryFilterText )
179179
local recordedTime = recording[3]
180180

181181
-- Apply filter if specified
182-
if not queryFilterText or queryFilterText == "" or
183-
string.find(string.lower(resourceName), string.lower(queryFilterText), 1, true) then
182+
if not queryFilterText or queryFilterText == "" or string.find(string.lower(resourceName), string.lower(queryFilterText), 1, true) then
184183
table.insert(rows, {resourceName, cpuUsage, recordedTime})
185184
end
186185
end

0 commit comments

Comments
 (0)