summaryrefslogtreecommitdiff
path: root/app/client/common/select.component.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-06-26 01:28:41 +0200
committerJules Laplace <julescarbon@gmail.com>2018-06-26 01:28:41 +0200
commit8d06839056967e8786c63976545aff098ae2f128 (patch)
tree51c83236b2dcc5a6adabb1b4036eccfff63b9ef5 /app/client/common/select.component.js
parentbd354556f98aa724dd6cee03a1828bd40ce01f33 (diff)
morph module.. enum method for sliders
Diffstat (limited to 'app/client/common/select.component.js')
-rw-r--r--app/client/common/select.component.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/client/common/select.component.js b/app/client/common/select.component.js
index 3fc13c2..d08ae60 100644
--- a/app/client/common/select.component.js
+++ b/app/client/common/select.component.js
@@ -18,7 +18,7 @@ class Select extends Component {
const options = (this.props.options || []).map((key,i) => {
let name, value
if (typeof key === 'string') {
- name = key.length < 4 ? key.toUpperCase() : key
+ name = key.length < 2 ? key.toUpperCase() : key
value = key
}
else if (typeof key === 'object') {