The group is created with no members and the upper left corner has: Error saving criteria | Group update failed.
Release : 20.3
Component : UIM - OPERATOR CONSOLE
The Edge browser is not able to correctly process the CR character in the query.
Remove all the CR characters from the query.
For example change this:
select distinct cs.cs_id from cm_computer_system cs
inner join cm_device cd
on cs.cs_id = cd.cs_id
inner join cm_nimbus_robot cr
on cd.dev_id = cr.dev_id
where cr.hub ='P_hub'
To this:
select distinct cs.cs_id from cm_computer_system cs inner join cm_device cd on cs.cs_id = cd.cs_id inner join cm_nimbus_robot cr on cd.dev_id = cr.dev_id where cr.hub ='P_hub'