Compare commits

...

1 Commits

Author SHA1 Message Date
google-labs-jules[bot]
9b0e228609 feat: Make crop description editable
This change makes the crop description editable on the crop edit page.

It adds a text area for the description to the crop form and permits the description attribute in the crops controller, allowing users to update the crop's description.
2025-11-29 03:34:21 +00:00
2 changed files with 2 additions and 0 deletions

View File

@@ -192,6 +192,7 @@ class CropsController < ApplicationController
:parent_id, :perennial,
:request_notes, :reason_for_rejection,
:rejection_notes,
:description,
:row_spacing, :spread, :height,
:sowing_method, :sun_requirements, :growing_degree_days,
scientific_names_attributes: %i(scientific_name _destroy id)

View File

@@ -42,6 +42,7 @@
%span.help-block Living more than two years
%h2 OpenFarm Data
= f.text_area :description, label: 'Description'
= f.number_field :row_spacing, label: 'Row Spacing (cm)', min: 0
= f.number_field :spread, label: 'Spread (cm)', min: 0
= f.number_field :height, label: 'Height (cm)', min: 0