Skip to content

Commit

Permalink
Merge pull request #499 from lblod/GN-4362-signatures-disappear-after…
Browse files Browse the repository at this point in the history
…-publishing

GN-4362 fix signatures disappearing after publishing
  • Loading branch information
abeforgit authored Jun 28, 2023
2 parents 1f07cdf + ca9a120 commit c833571
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions app/controllers/meetings/publish/notulen.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,11 @@ export default class MeetingsPublishNotulenController extends Controller {
this.notulen = notulen;
notulenSet = true;
}
this.signedResources = signedResources.toArray();
if (!notulenSet) {
this.notulen = notulen;
if (signedResources.length) {
this.signedResources = signedResources.slice();
if (!notulenSet) {
this.notulen = notulen;
}
}
})
);
Expand Down

0 comments on commit c833571

Please sign in to comment.