Skip to content

Commit

Permalink
Fix variable name typo (#2327)
Browse files Browse the repository at this point in the history
  • Loading branch information
Morlinest authored and lafriks committed Aug 18, 2017
1 parent 9df090e commit e08d1fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions routers/user/home.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
)

const (
tplDashborad base.TplName = "user/dashboard/dashboard"
tplDashboard base.TplName = "user/dashboard/dashboard"
tplIssues base.TplName = "user/dashboard/issues"
tplProfile base.TplName = "user/profile"
tplOrgHome base.TplName = "org/home"
Expand Down Expand Up @@ -192,7 +192,7 @@ func Dashboard(ctx *context.Context) {
if ctx.Written() {
return
}
ctx.HTML(200, tplDashborad)
ctx.HTML(200, tplDashboard)
}

// Issues render the user issues page
Expand Down

0 comments on commit e08d1fc

Please sign in to comment.