From 1486e5dcaebe4e3cefd9c84460990a5cf5d868da Mon Sep 17 00:00:00 2001 From: singerdmx Date: Mon, 28 Dec 2020 16:23:38 -0800 Subject: [PATCH] Reformat code --- lib/models/documents/document.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/models/documents/document.dart b/lib/models/documents/document.dart index a9eb1701..b67e20d1 100644 --- a/lib/models/documents/document.dart +++ b/lib/models/documents/document.dart @@ -175,8 +175,8 @@ class Document { res.push(op); bool nextOpIsImage = i + 1 < ops.length && ops[i + 1].isInsert && - ops[i + 1].data is !String; - if (nextOpIsImage && !(op.data as String).endsWith('\n')){ + ops[i + 1].data is! String; + if (nextOpIsImage && !(op.data as String).endsWith('\n')) { res.push(Operation.insert('\n', null)); } // Currently embed is equivalent to image and hence `is! String`