Skip to content

Commit cc19c8b

Browse files
authored
fix(vscode): fix statusbar icon order (#12544)
Change the order of the status bar to be icon first then text. I don't know if there is a reason behind this or an oversight. Other plugins like typescript and prettier show the icon on the left and the text on the right: <img width="371" height="40" alt="image" src="https://github.com/user-attachments/assets/b7c59527-e130-4b51-936a-54c1559eaf8c" />
1 parent 94b06ef commit cc19c8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editors/vscode/client/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ function updateStatsBar(
317317
icon = '$(check-all)';
318318
}
319319

320-
myStatusBarItem.text = `oxc: ${icon}`;
320+
myStatusBarItem.text = `${icon} oxc`;
321321
myStatusBarItem.backgroundColor = new ThemeColor(bgColor);
322322
}
323323

0 commit comments

Comments
 (0)