From e462d0d29818db75ca5d6897d0e008937e4d57c5 Mon Sep 17 00:00:00 2001 From: itsmichaelwang Date: Fri, 17 Nov 2017 00:23:07 -0800 Subject: [PATCH] Fix lint issue --- src/text-editor-component.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/text-editor-component.js b/src/text-editor-component.js index 97982b362..da08a6c11 100644 --- a/src/text-editor-component.js +++ b/src/text-editor-component.js @@ -170,7 +170,7 @@ class TextEditorComponent { this.textDecorationBoundaries = [] this.pendingScrollTopRow = this.props.initialScrollTopRow this.pendingScrollLeftColumn = this.props.initialScrollLeftColumn - this.tabIndex = this.props.element && this.props.element.tabIndex ? this.props.element.tabIndex : -1; + this.tabIndex = this.props.element && this.props.element.tabIndex ? this.props.element.tabIndex : -1 this.measuredContent = false this.queryGuttersToRender()