various minor fixes

This commit is contained in:
2025-07-04 05:33:20 +00:00
parent 8c339794b3
commit e932165a98
3 changed files with 6 additions and 7 deletions

View File

@@ -63,9 +63,9 @@ func HandleGETIndex(c *gin.Context) {
}
func HandleGETInstancesFragment(c *gin.Context) {
Auth, err := common.GetAuth(c)
auth, err := common.GetAuth(c)
if err == nil { // user should be authed, try to return index with population
instances, _, err := GetClusterResources(Auth)
instances, _, err := GetClusterResources(auth)
if err != nil {
common.HandleNonFatalError(c, err)
}