Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
serut authored Aug 1, 2024
1 parent c04fde4 commit 8234a22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/report/report-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@ export default class {
http.generate();
break;
}
default: {
default:
Log.error('Failed to export - this type is not implemented yet');
res.status(400);
res.json({'type':'This type [\' + type + \'] is not supported'});
return;
}}
}
} catch (e) {
Log.error('ReportService failed while creating report type [', type, ']');
console.error(e, e.stack);
Expand Down

0 comments on commit 8234a22

Please sign in to comment.