We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fc077a commit bc31151Copy full SHA for bc31151
Gruntfile.coffee
@@ -56,6 +56,8 @@ module.exports = (grunt) ->
56
viewportSize:
57
width: 1000
58
height: 1000
59
+ puppeteer:
60
+ args: ['--no-sandbox']
61
all:
62
urls:
63
(for x in grunt.file.expand('test/*.html')
src/controller.coffee
@@ -4197,7 +4197,7 @@ Editor::addEmptyLine = (str) ->
4197
return str + '\n'
4198
4199
Editor::getValue = ->
4200
- if @session?.currentlyUsingBlocks
+ if @session?.currentlyUsingBlocks and @session?.tree
4201
return @addEmptyLine @session.tree.stringify({
4202
preserveEmpty: @session.options.preserveEmpty
4203
})
0 commit comments