diff --git a/src/components/input/editor.vue b/src/components/input/editor.vue index 1ff46da00..2e44b8681 100644 --- a/src/components/input/editor.vue +++ b/src/components/input/editor.vue @@ -353,11 +353,11 @@ export default { const taskId = parseInt(parts[1]) const attachmentId = parseInt(parts[3]) const attachment = new AttachmentModel({taskId: taskId, id: attachmentId}) - + if (this.attachmentService === null) { this.attachmentService = new AttachmentService() } - + this.attachmentService.getBlobUrl(attachment) .then(url => { img.src = url @@ -411,6 +411,10 @@ export default { .tabs ul { margin-left: 0; } + + .preview.content ul li input[type="checkbox"] { + margin-right: .5rem; + } } .CodeMirror {