Some fixes

This commit is contained in:
Patrick Jentsch 2020-02-07 16:00:48 +01:00
parent 00238e83c3
commit e04f3d0ac3
2 changed files with 8 additions and 8 deletions

View File

@ -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:

View File

@ -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 {
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 {
} }
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);
} }
} }
} }