Merge pull request #3314 from FinnStutzenstein/Bugfixes
Minor Bugfixes (fixes #3312, fixes #3313)
This commit is contained in:
commit
1701fd72f2
@ -613,7 +613,11 @@ angular.module('OpenSlidesApp.motions', [
|
||||
},
|
||||
isRelatedProjected: function () {
|
||||
// A motion related object is the list of speakers (through the agenda item)
|
||||
return this.agenda_item.isListOfSpeakersProjected();
|
||||
if (this.agenda_item) {
|
||||
return this.agenda_item.isListOfSpeakersProjected();
|
||||
} else {
|
||||
return [];
|
||||
}
|
||||
},
|
||||
},
|
||||
relations: {
|
||||
|
@ -375,11 +375,12 @@ angular.module('OpenSlidesApp.motions.pdf', ['OpenSlidesApp.core.pdf'])
|
||||
.factory('MotionPartialContentProvider', [
|
||||
'$q',
|
||||
'gettextCatalog',
|
||||
'Config',
|
||||
'PDFLayout',
|
||||
'PdfMakeConverter',
|
||||
'ImageConverter',
|
||||
'HTMLValidizer',
|
||||
function ($q, gettextCatalog, PDFLayout, PdfMakeConverter, ImageConverter, HTMLValidizer) {
|
||||
function ($q, gettextCatalog, Config, PDFLayout, PdfMakeConverter, ImageConverter, HTMLValidizer) {
|
||||
/*
|
||||
* content should be an array of content blocks. Each content is an object providing a
|
||||
* heading and a text. E.g.
|
||||
|
Loading…
Reference in New Issue
Block a user