remove notices in facets endpoint (ref. #94)

This commit is contained in:
eduardohumberto 2018-08-30 22:03:08 -03:00 committed by Mateus Machado Luna
parent 5cec9ccd94
commit 243fc158e6
2 changed files with 6 additions and 6 deletions

View File

@ -453,7 +453,7 @@
let valueIndex = this.finderColumns[i].findIndex(option => option.value == selected); let valueIndex = this.finderColumns[i].findIndex(option => option.value == selected);
if (valueIndex >= 0) { if (valueIndex >= 0) {
onlyLabels.push(this.finderColumns[i][valueIndex].name); onlyLabels.push(this.finderColumns[i][valueIndex].label);
} }
} }
} }

View File

@ -198,12 +198,12 @@ class REST_Facets_Controller extends REST_Controller {
$row = [ $row = [
'label' => $item['name'], 'label' => $item['name'],
'value' => $item['id'], 'value' => $item['id'],
'img' => $item['header_image'], 'img' => ( isset($item['header_image']) ) ? $item['header_image'] : false ,
'parent' => $item['parent'], 'parent' => ( isset($item['parent']) ) ? $item['parent'] : 0,
'total_children' => $item['total_children'], 'total_children' => ( isset($item['total_children']) ) ? $item['total_children'] : 0,
'type' => 'Taxonomy', 'type' => 'Taxonomy',
'taxonomy_id' => $this->taxonomy->WP_Post->ID, 'taxonomy_id' => $this->taxonomy->WP_Post->ID,
'taxonomy' => $item['taxonomy'], 'taxonomy' => ( isset($item['taxonomy']) ) ? $item['taxonomy'] : false,
]; ];
} else if( $type === 'Tainacan\Metadata_Types\Relationship' ){ } else if( $type === 'Tainacan\Metadata_Types\Relationship' ){
@ -211,7 +211,7 @@ class REST_Facets_Controller extends REST_Controller {
$row = [ $row = [
'label' => $item['title'], 'label' => $item['title'],
'value' => $item['id'], 'value' => $item['id'],
'img' => $item['thumbnail']['thumb'], 'img' => ( isset($item['thumbnail']['thumb']) ) ? $item['thumbnail']['thumb'] : false,
'parent' => false, 'parent' => false,
'total_children' => 0, 'total_children' => 0,
'type' => 'Relationship' 'type' => 'Relationship'