diff --git a/app/src/frontend/building-edit.js b/app/src/frontend/building-edit.js index 15a3524e..f3805c95 100644 --- a/app/src/frontend/building-edit.js +++ b/app/src/frontend/building-edit.js @@ -224,6 +224,9 @@ class EditForm extends Component { case "number": return + case "year_estimator": + return case "text_multi": return @@ -383,6 +386,21 @@ const NumberInput = (props) => ( ); +class YearEstimator extends Component { + constructor(props) { + super(props); + } + // TODO add dropdown for decade, century + // TODO roll in first/last year estimate + // TODO handle changes internally, reporting out date_year, date_upper, date_lower + render() { + return ( + + ) + } +} + const CheckboxInput = (props) => (