Skip to content

Commit c76464b

Browse files
committed
console.error instead of throw, to prevent misleading messages
1 parent 9639f00 commit c76464b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/lib/pattern_assembler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ var pattern_assembler = function () {
4545
return patternlab.patterns[i];
4646
}
4747
}
48-
throw 'Could not find pattern with partial ' + partialName;
48+
console.error('Could not find pattern with partial ' + partialName);
4949
}
5050

5151
function buildListItems(container) {

0 commit comments

Comments
 (0)