Skip to content
Snippets Groups Projects
Commit e04f3d0a authored by Patrick Jentsch's avatar Patrick Jentsch
Browse files

Some fixes

parent 00238e83
No related branches found
No related tags found
No related merge requests found
...@@ -12,8 +12,8 @@ import os ...@@ -12,8 +12,8 @@ import os
SERVICES = {'corpus_analysis': {'name': 'Corpus analysis'}, SERVICES = {'corpus_analysis': {'name': 'Corpus analysis'},
'setup_files': {'name': 'Setup files', 'setup_files': {'name': 'Setup files',
'resources': {'mem_mb': 4096, 'n_cores': 4}, 'resources': {'mem_mb': 4096, 'n_cores': 4},
'add_job_form': AddSetupFilesJobForm}, 'add_job_form': AddSetupFilesJobForm},
'nlp': {'name': 'Natural Language Processing', 'nlp': {'name': 'Natural Language Processing',
'resources': {'mem_mb': 4096, 'n_cores': 2}, 'resources': {'mem_mb': 4096, 'n_cores': 2},
'add_job_form': AddNLPJobForm}, 'add_job_form': AddNLPJobForm},
...@@ -59,7 +59,7 @@ def service(service): ...@@ -59,7 +59,7 @@ def service(service):
job.delete() job.delete()
flash('Internal Server Error') flash('Internal Server Error')
return make_response( return make_response(
{'redirect_url': url_for('services.service', service='ocr')}, {'redirect_url': url_for('services.service', service=service)},
500) 500)
else: else:
for file in add_job_form.files.data: for file in add_job_form.files.data:
......
...@@ -7,7 +7,7 @@ class RessourceList extends List { ...@@ -7,7 +7,7 @@ class RessourceList extends List {
_init(ressources) { _init(ressources) {
this.add(Object.values(ressources)); this.addRessources(Object.values(ressources));
this.sort("creation_date", {order: "desc"}); this.sort("creation_date", {order: "desc"});
} }
...@@ -21,7 +21,7 @@ class RessourceList extends List { ...@@ -21,7 +21,7 @@ class RessourceList extends List {
switch(operation.op) { switch(operation.op) {
case "add": case "add":
if (pathArray.includes("results")) {break;} if (pathArray.includes("results")) {break;}
this.add([operation.value]); this.addRessources([operation.value]);
break; break;
case "remove": case "remove":
this.remove("id", pathArray[0]); this.remove("id", pathArray[0]);
...@@ -42,11 +42,11 @@ class RessourceList extends List { ...@@ -42,11 +42,11 @@ class RessourceList extends List {
} }
add(ressources) { addRessources(ressources) {
if (this.dataMapper) { if (this.dataMapper) {
super.add(ressources.map(x => this.dataMapper(x))); this.add(ressources.map(x => this.dataMapper(x)));
} else { } else {
super.add(ressources); this.add(ressources);
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment