fix(dashboard): mount ProjectIdentity in BuildSettings to allow project name and description editing - #313
Open
farrasrayhand wants to merge 17 commits into
Open
Conversation
…nal helpers, webhook SSRF validation
…ve test dependency issues
…id YAML parse error
…regex doesn't support nested braces
…r compat) GNU tar does not support --no-absolute-names; it strips absolute paths by default. The pre-extraction assertTarEntriesSafe already validates all entry paths for traversal attacks.
…blicWebhookUrl - Replace assertPublicWebhookUrl call with assertPublicUrlLiteral from ssrf-guard - Delete redundant webhook-url.ts and its test - Add 22 ssrf-guard tests covering isPrivateIp, isBlockedHostname, assertPublicHostLiteral, assertPublicUrlLiteral
…eFetch already handles SSRF internally
farrasrayhand
force-pushed
the
fix/dashboard-project-rename-identity
branch
2 times, most recently
from
July 30, 2026 03:21
b286a55 to
41f6858
Compare
…ct name and description editing
farrasrayhand
force-pushed
the
fix/dashboard-project-rename-identity
branch
from
July 30, 2026 03:26
41f6858 to
3b5a3a4
Compare
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
Mounts the existing
<ProjectIdentity />card on the project settings page (BuildSettings.tsx) so users can view and edit their Project Name and Description in the Dashboard UI.Motivation
Users were unable to find where to rename projects in the dashboard (Issue #278). The backend API (
PATCH /projects/:id) and the frontend<ProjectIdentity />component (which handles callingprojectsApi.update(id, { name, description })) were already fully implemented, but<ProjectIdentity />was unmounted.Related issue
#278
Changes
<ProjectIdentity />at the top of the project settings / runtime configuration surface.Verification
Manual verification in Dashboard UI:
Checklist
bun run test,bun run --cwd <workspace> lint, andbun formatall pass locally