We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1b60f8 commit 9adc42aCopy full SHA for 9adc42a
1 file changed
src/services/navigationBar.ts
@@ -758,9 +758,6 @@ namespace ts.NavigationBar {
758
else if (fnExpr.parent.kind === SyntaxKind.BinaryExpression &&
759
(fnExpr.parent as BinaryExpression).operatorToken.kind === SyntaxKind.EqualsToken) {
760
fnName = (fnExpr.parent as BinaryExpression).left.getText();
761
- if (fnName.length > 20) {
762
- fnName = fnName.substring(0, 17) + "...";
763
- }
764
}
765
// See if it is a property assignment, and if so use the property name
766
else if (fnExpr.parent.kind === SyntaxKind.PropertyAssignment &&
0 commit comments