fix(places): add notes textarea to place edit form (#596)

Notes field was writable via MCP but had no UI input in PlaceFormModal.
This commit is contained in:
jubnl
2026-04-14 15:38:39 +02:00
parent eb8ec8d793
commit 5b99efce06
15 changed files with 27 additions and 0 deletions
@@ -290,6 +290,19 @@ export default function PlaceFormModal({
/>
</div>
{/* Notes */}
<div>
<label className="block text-sm font-medium text-gray-700 mb-1">{t('places.formNotes')}</label>
<textarea
value={form.notes}
onChange={e => handleChange('notes', e.target.value)}
rows={3}
maxLength={2000}
placeholder={t('places.formNotesPlaceholder')}
className="form-input" style={{ resize: 'vertical' }}
/>
</div>
{/* Address + Coordinates */}
<div>
<label className="block text-sm font-medium text-gray-700 mb-1">{t('places.formAddress')}</label>