Skip to content

Commit

Permalink
fix: remmove normalize url
Browse files Browse the repository at this point in the history
  • Loading branch information
wxiaoyun committed Jul 24, 2024
1 parent dcc7141 commit 9116622
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/rspack-dev-server/src/ansiHTML.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,8 @@ export default function ansiHTML(text: string) {
var ct = _closeTags[seq];
if (typeof ct === "function") {
return ct(ansiCodes);
} else if (ct) {
}
if (ct) {
// Pop sequence
ansiCodes.pop();
return ct;
Expand Down

0 comments on commit 9116622

Please sign in to comment.