Hello All,
I'm trying to replicate the Widget from Legacy pages called "Custom List of Reports" This allows you to choose some reports for users to quick click on and load from the Legacy Pages. In Modern Dashboards I've been able to use the builder and some editing for this query.
SELECT TOP 10 n.Name, n.Uri, n.Type, n.Category
FROM Orion.Report n
WHERE Category LIKE 'X%'
AND n.Name IN ('y', 'z');
The problem is the Uri returns a link that won't load as it starts with swis: has anyone come up with a workaround or even another way to add links in the modern dashboard to editable URLs?