diff options
author | Stas Vilchik <stas.vilchik@sonarsource.com> | 2018-02-09 13:50:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-09 13:50:43 +0100 |
commit | 2e06a921076f73f901b333eb7fa236f7971ff3ac (patch) | |
tree | 5e39c74eb413af1339db70a337114931f84300e8 /server/sonar-web/src/main/js/components | |
parent | c1a9442546346aeaa8fd1d43535783af0face16c (diff) | |
download | sonarqube-2e06a921076f73f901b333eb7fa236f7971ff3ac.tar.gz sonarqube-2e06a921076f73f901b333eb7fa236f7971ff3ac.zip |
enable eslint rules to enforce newlines (#3043)
Diffstat (limited to 'server/sonar-web/src/main/js/components')
-rw-r--r-- | server/sonar-web/src/main/js/components/controls/SearchSelect.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/js/components/controls/SearchSelect.tsx b/server/sonar-web/src/main/js/components/controls/SearchSelect.tsx index 07f9b2dac2a..6d6403c41c2 100644 --- a/server/sonar-web/src/main/js/components/controls/SearchSelect.tsx +++ b/server/sonar-web/src/main/js/components/controls/SearchSelect.tsx @@ -68,6 +68,7 @@ export default class SearchSelect extends React.PureComponent<Props, State> { get minimumQueryLength() { return this.props.minimumQueryLength !== undefined ? this.props.minimumQueryLength : 2; } + get resetOnBlur() { return this.props.resetOnBlur !== undefined ? this.props.resetOnBlur : true; } |