mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
fix: Return url when query dashboards by tag
This commit is contained in:
parent
1478f38dd9
commit
8d5ccc7831
@ -52,8 +52,10 @@ func populateDashboardsByTag(orgID int64, signedInUser *m.SignedInUser, dashboar
|
|||||||
for _, item := range searchQuery.Result {
|
for _, item := range searchQuery.Result {
|
||||||
result = append(result, dtos.PlaylistDashboard{
|
result = append(result, dtos.PlaylistDashboard{
|
||||||
Id: item.Id,
|
Id: item.Id,
|
||||||
|
Slug: item.Slug,
|
||||||
Title: item.Title,
|
Title: item.Title,
|
||||||
Uri: item.Uri,
|
Uri: item.Uri,
|
||||||
|
Url: m.GetDashboardUrl(item.Uid, item.Slug),
|
||||||
Order: dashboardTagOrder[tag],
|
Order: dashboardTagOrder[tag],
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -17,6 +17,7 @@ type Hit struct {
|
|||||||
Title string `json:"title"`
|
Title string `json:"title"`
|
||||||
Uri string `json:"uri"`
|
Uri string `json:"uri"`
|
||||||
Url string `json:"url"`
|
Url string `json:"url"`
|
||||||
|
Slug string `json:"slug"`
|
||||||
Type HitType `json:"type"`
|
Type HitType `json:"type"`
|
||||||
Tags []string `json:"tags"`
|
Tags []string `json:"tags"`
|
||||||
IsStarred bool `json:"isStarred"`
|
IsStarred bool `json:"isStarred"`
|
||||||
|
Loading…
Reference in New Issue
Block a user