Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
nvdk committed Jun 8, 2022
1 parent d464cc3 commit adad973
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/controllers/meetings/publish/notulen.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ export default class MeetingsPublishNotulenController extends Controller {
);
} else {
try {
const { content, errors } = yield this.createPrePublishedResource.perform();
const { content, errors } =
yield this.createPrePublishedResource.perform();
const rslt = yield this.store.createRecord('versioned-notulen', {
zitting: this.model,
content: content,
Expand All @@ -96,8 +97,7 @@ export default class MeetingsPublishNotulenController extends Controller {
this.signedResources = [];
this.notulen = rslt;
this.validationErrors = errors;
}
catch(e) {
} catch (e) {
console.error(e);
this.errors = [e];
}
Expand Down

0 comments on commit adad973

Please sign in to comment.