aboutsummaryrefslogtreecommitdiff
path: root/bh20simplewebuploader
diff options
context:
space:
mode:
authorPjotr Prins2020-05-14 19:00:28 -0500
committerGitHub2020-05-14 19:00:28 -0500
commit9f901a09a6f5ac95d6875c9e0b435ea9b62fc0f9 (patch)
treecf302f88d5a321d599a838dbf557caba56ea6fe7 /bh20simplewebuploader
parenta259ff7f26458c0810741508df39a4b391ff18d4 (diff)
parent18424788c042b0ef9e1713fcc200e410729d6b4d (diff)
downloadbh20-seq-resource-9f901a09a6f5ac95d6875c9e0b435ea9b62fc0f9.tar.gz
bh20-seq-resource-9f901a09a6f5ac95d6875c9e0b435ea9b62fc0f9.tar.lz
bh20-seq-resource-9f901a09a6f5ac95d6875c9e0b435ea9b62fc0f9.zip
Merge pull request #53 from adamnovak/handle-select
Handle select values on the backend
Diffstat (limited to 'bh20simplewebuploader')
-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.