Skip to content

Commit

Permalink
Bug 1306460 - New console frontend: Fix text filtering. r=bgrins,r=nc…
Browse files Browse the repository at this point in the history
…hevobbe

MozReview-Commit-ID: A0sEoQ2bzdo
  • Loading branch information
linclark committed Oct 2, 2016
1 parent a987b44 commit fe85dc9
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ function search(messages, text = "") {
}

function isTextInFrame(text, frame) {
if (!frame) {
return false;
}
// @TODO Change this to Object.values once it's supported in Node's version of V8
return Object.keys(frame)
.map(key => frame[key])
Expand Down

0 comments on commit fe85dc9

Please sign in to comment.