mirror of
https://github.com/project-zot/zot.git
synced 2024-12-30 22:34:13 -05:00
fix: incorrect path for playground template (#858)
Signed-off-by: Catalin Hofnar <catalin.hofnar@gmail.com>
This commit is contained in:
parent
9916449d88
commit
261615c880
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ func SetupGQLPlaygroundRoutes(conf *config.Config, router *mux.Router,
|
|||
log := log.Logger{Logger: l.With().Caller().Timestamp().Logger()}
|
||||
log.Info().Msg("setting up graphql playground route")
|
||||
|
||||
templ, err := template.ParseFS(playgroundHTML, "gqlplayground/index.html.tmpl")
|
||||
templ, err := template.ParseFS(playgroundHTML, "index.html.tmpl")
|
||||
if err != nil {
|
||||
log.Fatal().Err(err)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue