playlist: fixed dashboard play ordering, fixes #7688

This commit is contained in:
Torkel Ödegaard
2017-05-24 13:21:43 +02:00
parent 634ee0f9fa
commit b17a1ed557
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -91,6 +91,6 @@ func LoadPlaylistDashboards(orgId, userId, playlistId int64) (dtos.PlaylistDashb
result = append(result, k...)
result = append(result, populateDashboardsByTag(orgId, userId, dashboardByTag, dashboardTagOrder)...)
sort.Sort(sort.Reverse(result))
sort.Sort(result)
return result, nil
}