aboutsummaryrefslogtreecommitdiff
path: root/bh20simplewebuploader/main.py
diff options
context:
space:
mode:
authorlltommy2020-04-29 16:48:19 +0200
committerlltommy2020-04-29 16:48:19 +0200
commitc13c4d1a157d75d620f368775758c1e16c45c448 (patch)
treea039068ac9f05723c96f08296448e02241eb4479 /bh20simplewebuploader/main.py
parent5721e446df72d5563c7434bf1b583d3d0004cd09 (diff)
downloadbh20-seq-resource-c13c4d1a157d75d620f368775758c1e16c45c448.tar.gz
bh20-seq-resource-c13c4d1a157d75d620f368775758c1e16c45c448.tar.lz
bh20-seq-resource-c13c4d1a157d75d620f368775758c1e16c45c448.zip
fixing JS due to name changes so the demo works again
Diffstat (limited to 'bh20simplewebuploader/main.py')
-rw-r--r--bh20simplewebuploader/main.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/bh20simplewebuploader/main.py b/bh20simplewebuploader/main.py
index 6ca9a78..126b8dd 100644
--- a/bh20simplewebuploader/main.py
+++ b/bh20simplewebuploader/main.py
@@ -197,6 +197,14 @@ def generate_form(schema, options):
record['type'] = 'number'
# Choose a reasonable precision for the control
record['step'] = '0.0001'
+
+ ### This is to fix the homepage for the moment ## needs more love though
+ # implementation of the [] stuff instead of just text fields
+ ## ToDo - implement lists
+ elif field_type == 'string[]':
+ record['type'] = 'text'
+ elif field_type == 'float[]':
+ record['type'] = 'text'
else:
raise NotImplementedError('Unimplemented field type {} in {} in metadata schema'.format(field_type, type_name))
yield record