Index: Source/devtools/front_end/SourceFrame.js |
diff --git a/Source/devtools/front_end/SourceFrame.js b/Source/devtools/front_end/SourceFrame.js |
index fd5a2bc2cd10fd589e099a11e3035b5fce247b84..ad85f20203503c363f6f3fc478ea18de59142810 100644 |
--- a/Source/devtools/front_end/SourceFrame.js |
+++ b/Source/devtools/front_end/SourceFrame.js |
@@ -606,7 +606,7 @@ WebInspector.SourceFrame.prototype = { |
for (var i = 0; i < rowMessages.length; ++i) { |
if (rowMessages[i].consoleMessage.isEqual(msg)) { |
- rowMessages[i].repeatCount = msg.totalRepeatCount; |
+ rowMessages[i].repeatCount = msg.repeatCount; |
this._updateMessageRepeatCount(rowMessages[i]); |
return; |
} |
@@ -645,7 +645,7 @@ WebInspector.SourceFrame.prototype = { |
messageLineElement.appendChild(document.createTextNode(msg.messageText)); |
rowMessage.element = messageLineElement; |
- rowMessage.repeatCount = msg.totalRepeatCount; |
+ rowMessage.repeatCount = msg.repeatCount; |
this._updateMessageRepeatCount(rowMessage); |
this._textEditor.endUpdates(); |
}, |