-
Notifications
You must be signed in to change notification settings - Fork 0
main/production #38
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
main/production #38
Conversation
Bumps [form-data](https://github.com/form-data/form-data) from 4.0.0 to 4.0.4. - [Release notes](https://github.com/form-data/form-data/releases) - [Changelog](https://github.com/form-data/form-data/blob/master/CHANGELOG.md) - [Commits](form-data/form-data@v4.0.0...v4.0.4) --- updated-dependencies: - dependency-name: form-data dependency-version: 4.0.4 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [axios](https://github.com/axios/axios) from 1.10.0 to 1.11.0. - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md) - [Commits](axios/axios@v1.10.0...v1.11.0) --- updated-dependencies: - dependency-name: axios dependency-version: 1.11.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
…1.11.0 Bump axios from 1.10.0 to 1.11.0
…ces/js/packages/api/form-data-4.0.4 Bump form-data from 4.0.0 to 4.0.4 in /resources/js/packages/api
--- updated-dependencies: - dependency-name: form-data dependency-version: 4.0.4 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
…ces/js/packages/ui/form-data-4.0.4 Bump form-data from 4.0.1 to 4.0.4 in /resources/js/packages/ui
Bumps [@eslint/plugin-kit](https://github.com/eslint/rewrite/tree/HEAD/packages/plugin-kit) from 0.3.3 to 0.3.4. - [Release notes](https://github.com/eslint/rewrite/releases) - [Changelog](https://github.com/eslint/rewrite/blob/main/packages/plugin-kit/CHANGELOG.md) - [Commits](https://github.com/eslint/rewrite/commits/plugin-kit-v0.3.4/packages/plugin-kit) --- updated-dependencies: - dependency-name: "@eslint/plugin-kit" dependency-version: 0.3.4 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
…/plugin-kit-0.3.4 Bump @eslint/plugin-kit from 0.3.3 to 0.3.4
Feature update
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 pull request implements code formatting standardization across Vue.js components and TypeScript files. The changes focus on normalizing quote usage, improving line formatting, and ensuring consistent spacing throughout the codebase.
- Standardizes quote usage from double quotes to single quotes in imports and string literals
- Improves multi-line formatting for template attributes and function parameters
- Normalizes spacing and removes unnecessary blank lines for better consistency
Reviewed Changes
Copilot reviewed 293 out of 382 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| resources/js/Pages/Teams/Partials/*.vue | Reformatted Vue components with consistent line breaks and spacing |
| resources/js/Pages/*.vue | Standardized quote usage and improved multi-line attribute formatting |
| resources/js/Pages/Profile/Partials/*.vue | Applied consistent formatting to profile-related components |
| resources/js/Pages/Auth/*.vue | Normalized formatting in authentication pages |
| resources/js/Pages/API/Partials/*.vue | Reformatted API-related components for consistency |
| resources/js/Layouts/AppLayout.vue | Improved template formatting and spacing |
| resources/js/Components/ui/**/*.vue | Standardized quote usage and formatting across UI components |
| resources/js/Components/ui/**/index.ts | Converted double quotes to single quotes in export statements |
| 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 5, 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 makes the text smaller. This appears to be an unintentional change during formatting that could affect the visual hierarchy.
| <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.