aboutsummaryrefslogtreecommitdiff
path: root/bh20simplewebuploader/main.py
diff options
context:
space:
mode:
authorAdam Novak2020-05-14 11:44:30 -0700
committerAdam Novak2020-05-14 11:44:30 -0700
commit18424788c042b0ef9e1713fcc200e410729d6b4d (patch)
tree61d1f93df84e5501982a5f4859b77d9e4263113c /bh20simplewebuploader/main.py
parentc44a03772f1fe12bb9a6fe27e242337d14356ff7 (diff)
downloadbh20-seq-resource-18424788c042b0ef9e1713fcc200e410729d6b4d.tar.gz
bh20-seq-resource-18424788c042b0ef9e1713fcc200e410729d6b4d.tar.lz
bh20-seq-resource-18424788c042b0ef9e1713fcc200e410729d6b4d.zip
Handle select values on the backend
Diffstat (limited to 'bh20simplewebuploader/main.py')
-rw-r--r--bh20simplewebuploader/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bh20simplewebuploader/main.py b/bh20simplewebuploader/main.py
index 2aebe80..e80713f 100644
--- a/bh20simplewebuploader/main.py
+++ b/bh20simplewebuploader/main.py
@@ -259,7 +259,7 @@ def parse_input(input_string, html_type, number_step=None):
Raise NotImplementedError if we forgot to implement a type.
"""
- if html_type == 'text':
+ if html_type == 'text' or html_type == 'select':
return input_string
elif html_type == 'number':
# May be an int or a float.