diff --git a/SQLSchemaCompare.UI/wwwroot/js/Main.ts b/SQLSchemaCompare.UI/wwwroot/js/Main.ts
index 83eb83a..c5a3b56 100644
--- a/SQLSchemaCompare.UI/wwwroot/js/Main.ts
+++ b/SQLSchemaCompare.UI/wwwroot/js/Main.ts
@@ -84,7 +84,11 @@ class Main {
if (Utility.IsNullOrWhitespace(targetItem)) {
targetItem = Localization.Get("LabelDoesNotExist");
}
- $(".tcx-diff-item-name").html(`${sourceItem} ${targetItem}`);
+ const diffItemName = $(".tcx-diff-item-name");
+ diffItemName.empty();
+ diffItemName.append(document.createTextNode(sourceItem));
+ diffItemName.append($("").addClass("fa fa-long-arrow-alt-right mx-1"));
+ diffItemName.append(document.createTextNode(targetItem));
void Utility.AjaxCall(this.resultItemScriptsUrl + rowId, HttpMethod.Get).then((response): void => {
EditorManager.CreateEditor(EditorType.Diff, "sqlDiff", {