Browse Source

Fix long line issue in dist build

Heiko Salmon 3 years ago
parent
commit
71fc73fa33
1 changed files with 2 additions and 1 deletions
  1. 2 1
      frontend/src/components/Editor.vue

+ 2 - 1
frontend/src/components/Editor.vue

@@ -47,7 +47,8 @@
            'bullist numlist table | outdent indent | removeformat | link hr',
          skin: false,
          content_css: false,
-         content_style: 'body { font-family: \'Helvetica Neue\', \'Segoe UI\', Helvetica, sans-serif; font-size: 15px; line-height: 26px; color: #444; }' +
+         content_style: 'body { font-family: \'Helvetica Neue\', \'Segoe UI\', Helvetica, ' +
+             'sans-serif; font-size: 15px; line-height: 26px; color: #444; }' +
            'img { max-width: 100%; }'+
            'a { color: #0055d4; }'+
            'a:hover { color: #111; }'