Description
Now that the Trees table component and Control Panel are being wired up, we need the ability to edit an existing tree record from the table.
The flow for entering "edit mode" is as follows:
Notes
Acceptance Criteria
- Entering "edit mode" replaces the control buttons with a single "Finish" button.
- Hovering a tree row visually highlights it.
- Clicking a row opens an Edit Tree popup pre-filled with the selected tree's values.
- While the popup is open, other page actions are visually "greyed out" / disabled to prevent conflicting actions.
- Clicking Save issues a PUT request to update that tree and refreshes the table UI with the new values.
- Clicking Cancel closes the popup and restores the previous view.
- Errors are shown clearly (toast and/or inline form error).
Task
Additional Information
Edit Tree Popup

Description
Now that the Trees table component and Control Panel are being wired up, we need the ability to edit an existing tree record from the table.
The flow for entering "edit mode" is as follows:
Notes
git pullbefore any development workAcceptance Criteria
Task
PUT /api/admin/trees/[id]with updated fieldsAdditional Information
Edit Tree Popup