diff --git a/openslides/motions/static/js/motions/docx.js b/openslides/motions/static/js/motions/docx.js index c37367287..ea76be16d 100644 --- a/openslides/motions/static/js/motions/docx.js +++ b/openslides/motions/static/js/motions/docx.js @@ -154,9 +154,13 @@ angular.module('OpenSlidesApp.motions.docx', ['OpenSlidesApp.core.docx']) if (!fields[i].public) { title += ' (' + gettextCatalog.getString('internal') + ')'; } + var comment = motion.comments[i]; + if (comment.indexOf('

') !== 0) { + comment = '

' + comment + '

'; + } comments.push({ title: title, - comment: motion.comments[i], + comment: comment, }); } }