Skip to content

Commit

Permalink
fixes #54011
Browse files Browse the repository at this point in the history
  • Loading branch information
isidorn committed Jul 20, 2018
1 parent 8d964cb commit 0ef2155
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ class WatchExpressionsRenderer implements IRenderer {
});
data.name.title = watchExpression.type ? watchExpression.type : watchExpression.value;

if (watchExpression.value) {
if (typeof watchExpression.value === 'string') {
data.name.textContent += ':';
}
}
Expand Down

0 comments on commit 0ef2155

Please sign in to comment.