-
Notifications
You must be signed in to change notification settings - Fork 500
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(ui): update tag width for better text display #858
fix(ui): update tag width for better text display #858
Conversation
Replace fixed max-width with dynamic w-fit class to prevent text truncation in ApplicationSpaceItem and RepoItem components, improving tag readability on all screen sizes
MR Evaluation:This feature is still under test, evaluation are given by AI and might be inaccurate. After evaluation, the code changes in the Merge Request get score: 81-83. Analysis for the evaluation score:
TipsCodeReview Commands (invoked as MR or PR comments)
CodeReview Discussion ChatThere are 2 ways to chat with Starship CodeReview:
Note: Be mindful of the bot's finite context window. CodeReview Documentation and Community
About Us:Visit the OpenCSG StarShip website for the Dashboard and detailed information on CodeReview, CodeGen, and other StarShip modules. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
The TipsCodeReview Commands (invoked as MR or PR comments)
CodeReview Discussion ChatThere are 2 ways to chat with Starship CodeReview:
Note: Be mindful of the bot's finite context window. CodeReview Documentation and Community
|
What this PR does:
Replace fixed max-width with dynamic w-fit class to prevent text truncation in ApplicationSpaceItem and RepoItem components, improving tag readability on all screen sizes
Which issue(s) this PR fixes:
Fixes #
Type of changes
Please delete options that are not relevant.
Feature/Issue validation/testing:
Please describe the tests that you ran to verify your changes and relevant result summary.
Test A
Test B
Logs
Special notes for your reviewer:
Checklist:
Release note:
MR Summary:
The summary is added by @codegpt.
This Merge Request addresses a UI bug by updating the tag width in the
ApplicationSpaceItem
andRepoItem
components for enhanced text display. It replaces the fixedmax-width
with a dynamicw-fit
class to prevent text truncation, improving tag readability across different screen sizes.Key updates:
max-w-[80px]
tow-fit
inApplicationSpaceItem.vue
for dynamic width adjustment.RepoItem.vue
, ensuring consistent tag display across components.