Fix code alignment by adding space to align .Replace method calls
Some checks failed
MSBuild / build (push) Has been cancelled
MSBuild / publish (push) Has been cancelled

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
committed by ema
parent 8ad5f39eab
commit a38b7a450a

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;
}