Skip to content

feat: APP-887 Change "edit project" on project page#2812

Open
alexander-astrand wants to merge 3 commits intodevfrom
feat-APP-887-change-edit-project-on-project-page
Open

feat: APP-887 Change "edit project" on project page#2812
alexander-astrand wants to merge 3 commits intodevfrom
feat-APP-887-change-edit-project-on-project-page

Conversation

@alexander-astrand
Copy link
Copy Markdown
Contributor

Description

https://regennetwork.atlassian.net/browse/APP-887


Author Checklist

All items are required. Please add a note to the item if the item is not applicable and
please add links to any relevant follow up issues.

I have...

  • provided a link to the relevant issue or specification
  • provided instructions on how to test
  • reviewed "Files changed" and left comments if necessary
  • confirmed all CI checks have passed

How to test

  1. Go to project page. Make sure that the edit project button now says manage project and links to the manage page.

Reviewers Checklist

All items are required. Please add a note if the item is not applicable and please add
your handle next to the items reviewed if you only reviewed selected items
.

I have...

  • confirmed all author checklist items have been addressed
  • reviewed code correctness and readability
  • verified React components follow DRY principles
  • reviewed documentation is accurate
  • reviewed tests
  • manually tested (if applicable)

@netlify
Copy link
Copy Markdown

netlify bot commented Mar 10, 2026

Deploy Preview for terrasos ready!

Name Link
🔨 Latest commit 5af01f1
🔍 Latest deploy log https://app.netlify.com/projects/terrasos/deploys/69b939bad35a9e00089e17b8
😎 Deploy Preview https://deploy-preview-2812--terrasos.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

Copy link
Copy Markdown
Contributor

Copilot AI left a 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 PR changes the "edit project" button on the project page to say "manage project" and redirects to the manage page (/dashboard/projects/{id}/manage) instead of the old edit page (/project-pages/{id}/edit/basic-info).

Changes:

  • Added a new MANAGE_PROJECT i18n constant and replaced EDIT_PROJECT usage in both SellOrdersActionsBar components.
  • Updated the navigation target from /project-pages/{id}/edit/basic-info to /dashboard/projects/{id}/manage in both the Next.js and legacy React Router versions of the component.

Reviewed changes

Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.

File Description
web-marketplace/src/legacy-pages/ProjectEdit/ProjectEdit.constants.ts Adds new MANAGE_PROJECT i18n constant
web-marketplace/src/components/organisms/SellOrdersActionsBar/SellOrdersActionsBar.tsx Updates button text and route to manage page (Next.js version)
web-marketplace/src/components/organisms/SellOrdersActionsBar/SellOrdersActionsBar.legacy.tsx Updates button text and route to manage page (legacy React Router version)

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

You can also share your feedback on Copilot code review. Take the survey.

Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: ec689e4111

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

@gemini-code-assist
Copy link
Copy Markdown
Contributor

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request addresses an improvement to the project page by updating the 'Edit Project' button. The button's text has been changed to 'Manage Project', and its associated navigation link now directs users to a dedicated 'manage' dashboard page, streamlining the user experience for project administration.

Highlights

  • Button Text Update: The 'Edit Project' button on the project page has been renamed to 'Manage Project' to better reflect its functionality.
  • Navigation Path Change: The navigation link associated with the project management button has been updated to point to the new /dashboard/projects/{id}/manage route, moving away from the legacy /project-pages/{id}/edit/basic-info path.
  • New Constant Introduced: A new constant, MANAGE_PROJECT, was added to centralize the 'manage project' text.
Changelog
  • web-marketplace/src/components/organisms/SellOrdersActionsBar/SellOrdersActionsBar.legacy.tsx
    • Replaced the EDIT_PROJECT constant with MANAGE_PROJECT.
    • Updated the navigation path from /project-pages/{id}/edit/basic-info to /dashboard/projects/{id}/manage.
  • web-marketplace/src/components/organisms/SellOrdersActionsBar/SellOrdersActionsBar.tsx
    • Replaced the EDIT_PROJECT constant with MANAGE_PROJECT.
    • Updated the navigation path from /project-pages/{id}/edit/basic-info to /dashboard/projects/{id}/manage.
  • web-marketplace/src/legacy-pages/ProjectEdit/ProjectEdit.constants.ts
    • Added a new constant MANAGE_PROJECT for the updated button text.
Activity
  • No human activity has occurred on this pull request yet.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request successfully implements the feature described in the title, changing the 'edit project' button to 'manage project' and updating the corresponding navigation paths. The changes are consistently applied across the relevant files, including the import statements, button text, and routing logic. A new constant MANAGE_PROJECT has been introduced to support this change.

@alexander-astrand
Copy link
Copy Markdown
Contributor Author

@erikalogie @S4mmyb See testing instructions.

@erikalogie
Copy link
Copy Markdown
Collaborator

Let's change the edit to the cog icon and make sure the text is correct:
image

@blushi blushi force-pushed the feat-APP-887-change-edit-project-on-project-page branch from f0fb703 to 5af01f1 Compare March 17, 2026 11:23
@blushi
Copy link
Copy Markdown
Member

blushi commented Mar 17, 2026

Let's change the edit to the cog icon and make sure the text is correct

@erikalogie you can have another look

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants