Strange behavior with Location and Organization

Problem:
I have all the hosts, the Operating Systems, the Smart Proxy, the Environments, the subnets in Default Location and Default Organization.
In settings -> puppet I have this variable set:
Location fact = foreman_location
Organization fact = foreman_organization

When I click on one host, I will be redirected correctly to the host details/properties/runtime/… if I try to click on Facts or Reports I obtain “No entries found”, but if on the top of Foreman I chose Any Location and Any Organization all reports or all facts has been correctly displayed.
In the log the only difference I notice is in the first case:
2020-02-12T15:49:57 [I|app|0e17f63d] Processing by ConfigReportsController#index as HTML
2020-02-12T15:49:57 [I|app|0e17f63d] Parameters: {“host_id”=>“blade-03-11.cloud.pd.infn.it”}
2020-02-12T15:49:57 [I|app|0e17f63d] Rendering config_reports/index.html.erb within layouts/application
2020-02-12T15:49:57 [I|app|0e17f63d] Rendering text template
2020-02-12T15:49:57 [I|app|0e17f63d] Rendered text template (0.0ms)
2020-02-12T15:49:57 [I|app|0e17f63d] Rendered config_reports/_list.html.erb (19.8ms)
2020-02-12T15:49:57 [I|app|0e17f63d] Rendered config_reports/index.html.erb within layouts/application (21.9ms)
2020-02-12T15:49:57 [I|app|0e17f63d] Rendered common/_searchbar.html.erb (0.6ms)
2020-02-12T15:49:57 [I|app|0e17f63d] Rendered layouts/_application_content.html.erb (1.1ms)
2020-02-12T15:49:57 [I|app|0e17f63d] Rendering layouts/base.html.erb
2020-02-12T15:49:57 [I|app|0e17f63d] Rendered layouts/base.html.erb (44.5ms)
2020-02-12T15:49:57 [I|app|0e17f63d] Completed 200 OK in 109ms (Views: 59.8ms | ActiveRecord: 24.1ms)

with any location and any organization:
2020-02-12T15:50:43 [I|app|6d425240] Processing by ConfigReportsController#index as HTML
2020-02-12T15:50:43 [I|app|6d425240] Parameters: {“host_id”=>“blade-03-11.cloud.pd.infn.it”}
2020-02-12T15:50:43 [I|app|6d425240] Rendering config_reports/index.html.erb within layouts/application
2020-02-12T15:50:44 [I|app|6d425240] Rendered common/_pagination.html.erb (1.3ms)
2020-02-12T15:50:44 [I|app|6d425240] Rendered config_reports/_list.html.erb (335.6ms)
2020-02-12T15:50:44 [I|app|6d425240] Rendered config_reports/index.html.erb within layouts/application (336.9ms)
2020-02-12T15:50:44 [I|app|6d425240] Rendered common/_searchbar.html.erb (1.0ms)
2020-02-12T15:50:44 [I|app|6d425240] Rendered layouts/_application_content.html.erb (2.2ms)
2020-02-12T15:50:44 [I|app|6d425240] Rendering layouts/base.html.erb
2020-02-12T15:50:44 [I|app|6d425240] Rendered layouts/base.html.erb (26.1ms)
2020-02-12T15:50:44 [I|app|6d425240] Completed 200 OK in 382ms (Views: 67.9ms | ActiveRecord: 306.3ms)

So the config_reports/index.html.erb has been invoked but in first case (Default location and organization) no results and no pagination

The same behavior with facts with the invocation of fact_values/index.html.erb

I try to have a look to:
/usr/share/foreman/app/views/fact_values/index.html.erb
and
/usr/share/foreman/app/views/report_templates/index.html.erb

an the other file involved but I didn’t find any context with location and organization

I try also in some node to configure facter adding:
facter | grep location
foreman_location => Default location
location_fact => Default location

facter | grep organiz
foreman_organization => Default organization
organization_fact => Default organization

But the problem is still there on the web interface side.

Expected outcome:
I expect to see facts and reports in Default location and Default Organization

Foreman and Proxy versions:
foreman-1.23.1-1.el7.noarch
foreman-proxy-1.23.1-1.el7.noarch

Foreman and Proxy plugin versions:
puppetserver version: 6.7.2

Distribution and version:
CentOS Linux release 7.7.1908 (Core)

Other relevant data: