From e18703b627ef9c4883accaba56a3500e2c40e7d1 Mon Sep 17 00:00:00 2001 From: Kameron Niksefat Date: Thu, 20 Feb 2020 11:05:36 -0500 Subject: [PATCH] lint --- src/js/models/post.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/js/models/post.js b/src/js/models/post.js index bc0089616..18772dd29 100644 --- a/src/js/models/post.js +++ b/src/js/models/post.js @@ -214,7 +214,9 @@ class Post { } else { listParent = null; sectionParent = post; - const tagName = tailNotSelected && tail.section === section ? 'p' : section.tagName; + const tagName = tailNotSelected && tail.section === section ? + 'p' : + section.tagName; newSection = builder.createMarkupSection(tagName); }