Skip to content

Commit 549818e

Browse files
committed
fix: Use single-width emoji for skipped projects
- Replaces the `⏭️` emoji with `➡️` to improve table alignment in the build report.
1 parent d478d18 commit 549818e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

infra/build/functions/report_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def generate_comparison_table(all_results):
8686
if project in all_results[version].get('failed_projects', []):
8787
status_icon = '❌'
8888
elif project in all_results[version].get('skipped_projects', []):
89-
status_icon = '️'
89+
status_icon = '️'
9090
else:
9191
status_icon = '✅'
9292
row_parts.append(f' {status_icon.center(15)} ')

0 commit comments

Comments
 (0)