-
Notifications
You must be signed in to change notification settings - Fork 0
Feature update #37
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
Feature update #37
Conversation
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.
Pull Request Overview
This is a code formatting/linting pull request that applies consistent styling across Vue.js frontend components and TypeScript files. The changes focus primarily on improving code readability and consistency by removing unnecessary line breaks in template attributes and method chaining.
- Consolidated multi-line Vue template attributes into single lines where appropriate
- Standardized JavaScript/TypeScript formatting with consistent semicolons and quote usage
- Cleaned up unnecessary line breaks in import statements and function calls
Reviewed Changes
Copilot reviewed 293 out of 340 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| resources/js/packages/ui/src/Tag/TagDropdown.vue | Consolidated multi-line template attributes and method calls |
| resources/js/packages/ui/src/Project/*.vue | Standardized formatting across project-related components |
| resources/js/packages/ui/src/Input/*.vue | Cleaned up input component formatting and template attributes |
| resources/js/packages/ui/src/*.vue | Applied consistent formatting to utility components |
| resources/js/packages/api/src/*.ts | Standardized TypeScript formatting and type definitions |
| resources/js/lib/utils.ts | Applied consistent semicolon usage |
| resources/js/app.ts | Cleaned up import statements and template formatting |
| resources/js/Pages/**/*.vue | Standardized page component formatting |
| resources/js/Components/ui/**/*.vue | Applied consistent formatting to UI components |
| resources/js/Layouts/AppLayout.vue | Consolidated template attributes and cleaned up formatting |
| class="text-text-tertiary text-sm font-semibold pt-5 pb-1.5"> | ||
| Manage | ||
| </div> | ||
| <div class="text-text-tertiary text-xs font-semibold pt-5 pb-1.5">Manage</div> |
Copilot
AI
Aug 4, 2025
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.
The text size class has been changed from 'text-sm' to 'text-xs' which appears to be unintentional formatting change rather than intentional design modification. This could affect the visual hierarchy of the navigation.
| <div class="text-text-tertiary text-xs font-semibold pt-5 pb-1.5">Manage</div> | |
| <div class="text-text-tertiary text-sm font-semibold pt-5 pb-1.5">Manage</div> |
No description provided.