Bug 1306460 - New console frontend: Fix text filtering. r=bgrins,r=nchevobbe

MozReview-Commit-ID: A0sEoQ2bzdo
This commit is contained in:
Lin Clark 2016-10-02 15:16:49 -07:00
Родитель a987b44a80
Коммит fe85dc9030
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -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])