From 76e0d5e0b3f39b94a5427c7a68e8062adcd27af1 Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Fri, 5 Jul 2024 10:43:13 +0200 Subject: dashboard/app: move templates to dir --- pkg/html/html.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkg/html') diff --git a/pkg/html/html.go b/pkg/html/html.go index efb8c01b2..5429606e2 100644 --- a/pkg/html/html.go +++ b/pkg/html/html.go @@ -25,9 +25,9 @@ import ( // When you deploy AppEngine in the GOMOD, CWD is syzkaller/. var globSearchPath = func() string { if appengine.IsAppEngine() { - return "dashboard/app/" + return "dashboard/app/templates/" } - return "" + return "templates/" }() // SetGlobSearchPath overrides the default path where syzkaller looks for templates. -- cgit mrf-deployment