Merge pull request #475 from openclassify/vedat

fixed edit form district, neighborhood, village
This commit is contained in:
profstyle1 2020-04-01 13:03:58 +03:00 committed by GitHub
commit 310099dc11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View File

@ -12,6 +12,7 @@ class DistrictFormBuilder extends FormBuilder
*/
protected $fields = [
'name','slug','order','parent_city_id'=>[
'type' => 'anomaly.field_type.text',
'class' => 'hidden',
'label' => '',
],

View File

@ -12,6 +12,7 @@ class NeighborhoodFormBuilder extends FormBuilder
*/
protected $fields = [
'name','slug','order','parent_district_id'=>[
'type' => 'anomaly.field_type.text',
'class' => 'hidden',
'label' => '',
],

View File

@ -12,6 +12,7 @@ class VillageFormBuilder extends FormBuilder
*/
protected $fields = [
'name','slug','order','parent_neighborhood_id'=>[
'type' => 'anomaly.field_type.text',
'class' => 'hidden',
'label' => '',
],