remove entities only name

This commit is contained in:
Jonathan 2024-01-31 17:02:02 +01:00
parent 2daa6f1e87
commit eecf92657a
1 changed files with 1 additions and 1 deletions
pandora_console/include

View File

@ -3791,7 +3791,7 @@ function visual_map_get_user_layouts(
$retval = [];
foreach ($layouts as $layout) {
if ($only_names) {
$retval[$layout['id']] = $layout['name'];
$retval[$layout['id']] = io_safe_output($layout['name']);
} else {
$retval[$layout['id']] = $layout;
}