Browse Source

Fix variable name typo (#2327)

for-closed-social
Morlinest 7 years ago
committed by Lauris BH
parent
commit
e08d1fcc15
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      routers/user/home.go

+ 2
- 2
routers/user/home.go View File

@ -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"
@ -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

Loading…
Cancel
Save