Skip to content

Commit 087de57

Browse files
Merge pull request #651 from sipcapture/610-Extra-space-chars-in-web-interface-added
fix: Extra space chars in web-interface added #610
2 parents 5209bb0 + a66f750 commit 087de57

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/app/helpers/parser.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -877,10 +877,10 @@ export class TransactionServiceProcessor {
877877
break;
878878
}
879879

880-
return `<span style="font-weight:bold">${a}</span> <span style="font-weight:bold;color:${color}">${c}</span> `;
880+
return `<span style="font-weight:bold">${a}</span> <span style="font-weight:bold;color:${color}">${c}</span>`;
881881
})
882882
.replace(regexHeaders, (g, a) => {
883-
return `<span style="font-weight:bold">${g}</span> `;
883+
return `<span style="font-weight:bold">${g}</span>`;
884884
});
885885

886886
return raw;

0 commit comments

Comments
 (0)