Skip to content

Commit f713829

Browse files
author
Chris K
committed
DFL-3496 Throws on bugfixes
1 parent b1fa90a commit f713829

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ecma-debugger/objectinspection.6.0/templates.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@
281281
has_match = !searchterm ||
282282
prop[NAME].toLowerCase().contains(searchterm) ||
283283
value.toLowerCase().contains(searchterm);
284-
if (has_match || expanded_prop.length)
284+
if (has_match || (expanded_prop && expanded_prop.length))
285285
{
286286
ret.push(
287287
"<item obj-id='" + obj_id + "'>" +

0 commit comments

Comments
 (0)