We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parenta32d0ef commite611e57Copy full SHA for e611e57
cli/server.go
@@ -1310,7 +1310,7 @@ func templateHelpers(options *coderd.Options) map[string]any {
1310
"base_url":func()string {returnoptions.AccessURL.String() },
1311
"current_year":func()string {returnstrconv.Itoa(time.Now().Year()) },
1312
"logo_url":func()string {
1313
-ctx,cancel:=context.WithTimeout(context.Background(),1*time.Second)
+ctx,cancel:=context.WithTimeout(context.Background(),1*time.Second)
1314
defercancel()
1315
1316
logoURL,err:=options.Database.GetLogoURL(ctx)
@@ -1325,7 +1325,7 @@ func templateHelpers(options *coderd.Options) map[string]any {
1325
returnlogoURL
1326
},
1327
"app_name":func()string {
1328
1329
1330
1331
appName,err:=options.Database.GetApplicationName(ctx)