From 3dcf4ec27c8811eff09bf246dd18428e55847c76 Mon Sep 17 00:00:00 2001 From: dab246 Date: Mon, 10 Apr 2023 15:20:02 +0700 Subject: [PATCH] TF-1655 Fix add a line break after signature in composer (cherry picked from commit 8dc25507bc4ad8f5009dbd3f2fcbe1d92bd0e706) --- core/lib/presentation/extensions/html_extension.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/presentation/extensions/html_extension.dart b/core/lib/presentation/extensions/html_extension.dart index 8a1184220..8952f4a98 100644 --- a/core/lib/presentation/extensions/html_extension.dart +++ b/core/lib/presentation/extensions/html_extension.dart @@ -24,7 +24,7 @@ extension HtmlExtension on String { 'blockquote', attribute: 'style="margin-left:8px;margin-right:8px;padding-left:12px;padding-right:12px;border-left:5px solid #eee;"'); - String asSignatureHtml() => '--
$this'; + String asSignatureHtml() => '--
$this
'; String removeEditorStartTag() { if (trim() == editorStartTags) {