chg: [galaxyClusters:view] Added analystData support in /galaxyClusters/view

notes
Sami Mokaddem 2024-01-30 15:17:40 +01:00
parent b6c6ee60e4
commit 8ecdf70da0
No known key found for this signature in database
GPG Key ID: 164C473F627A06FA
1 changed files with 14 additions and 1 deletions

View File

@ -50,7 +50,20 @@ if (!$cluster['GalaxyCluster']['default']) {
}
$table_data[] = array('key' => __('Default'), 'boolean' => $cluster['GalaxyCluster']['default'], 'class' => 'black');
$table_data[] = array('key' => __('Version'), 'value' => $cluster['GalaxyCluster']['version']);
$table_data[] = array('key' => __('UUID'), 'value' => $cluster['GalaxyCluster']['uuid'], 'value_class' => 'quickSelect');
$table_data[] = [
'key' => __('UUID'),
'element' => 'genericElements/SingleViews/Fields/uuidField',
'element_params' => [
'data' => $cluster,
'field' => [
'path' => 'GalaxyCluster.uuid',
'object_type' => 'GalaxyCluster',
'notes_path' => 'GalaxyCluster.Note',
'opinions_path' => 'GalaxyCluster.Opinion',
'relationships_path' => 'GalaxyCluster.Relationship',
]
],
];
$table_data[] = array('key' => __('Collection UUID'), 'value' => $cluster['GalaxyCluster']['collection_uuid'], 'value_class' => 'quickSelect');
$table_data[] = array(
'key' => __('Source'),