Merged
Conversation
✅ Deploy Preview for rsdoctor ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds support for displaying the webpack/rspack configuration name in the UI. When a build configuration has a name field defined, it will be shown in the Project Overall section and used to customize the browser tab title (e.g., "Rsdoctor - webpack").
Key Changes:
- Extracts the configuration name from the first config's
namefield in the data loader - Updates type definitions to include an optional
namefield in the project info response - Displays the name in the Project Overall component and dynamically updates the document title
Reviewed changes
Copilot reviewed 5 out of 6 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| pnpm-lock.yaml | Adds empty compiled package entries (unrelated to the feature) |
| packages/utils/src/common/data/index.ts | Extracts config name from first configuration when loading project info |
| packages/types/src/sdk/server/apis/project.ts | Adds optional name field to GetProjectInfo API response type |
| packages/components/src/pages/Overall/index.tsx | Passes the name prop to ProjectOverall component |
| packages/components/src/components/Overall/project.tsx | Displays config name as "Builder" field and renames local variable to avoid conflict |
| packages/components/src/components/Layout/index.tsx | Wraps layout with ServerAPIProvider to fetch project info and update document title based on config name |
Files not reviewed (1)
- pnpm-lock.yaml: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
fansenze
approved these changes
Jan 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Related Links