Fix code alignment by adding space to align .Replace method calls

Co-authored-by: emako <24737061+emako@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-07-23 15:53:51 +00:00
parent 7485b8c4e5
commit f2c8273612

View File

@@ -94,7 +94,7 @@ public class MarkdownPanel : WebpagePanel
}
var html = template.Replace("{{content}}", content)
.Replace("{{rtl}}", isRtl ? "rtl" : "ltr");
.Replace("{{rtl}}", isRtl ? "rtl" : "ltr");
return html;
}