chg: [organisations] nationality field renamed to country
- UI display only so far - want to maintain alignment with MISP, might change in the future - filtering still calls it nationality - API still calls it nationalityrefacto/CRUDComponent
parent
130d5082e9
commit
ab2ab4e8f8
|
@ -57,7 +57,7 @@ echo $this->element('genericElements/IndexTable/index_table', [
|
|||
'data_path' => 'url',
|
||||
],
|
||||
[
|
||||
'name' => __('Nationality'),
|
||||
'name' => __('Country'),
|
||||
'data_path' => 'nationality',
|
||||
],
|
||||
[
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
'field' => 'url'
|
||||
),
|
||||
array(
|
||||
'label' => __('Country'),
|
||||
'field' => 'nationality'
|
||||
),
|
||||
array(
|
||||
|
|
|
@ -66,7 +66,7 @@ echo $this->element('genericElements/IndexTable/index_table', [
|
|||
'data_path' => 'url',
|
||||
],
|
||||
[
|
||||
'name' => __('Nationality'),
|
||||
'name' => __('Country'),
|
||||
'data_path' => 'nationality',
|
||||
'sort' => 'nationality',
|
||||
],
|
||||
|
|
|
@ -22,7 +22,7 @@ echo $this->element(
|
|||
'path' => 'url'
|
||||
],
|
||||
[
|
||||
'key' => __('Nationality'),
|
||||
'key' => __('Country'),
|
||||
'path' => 'nationality'
|
||||
],
|
||||
[
|
||||
|
|
Loading…
Reference in New Issue