From 1b12cc9f31b21ccd226a7f204983c7877a496863 Mon Sep 17 00:00:00 2001 From: Rex Wang <109048808+RexWangPT@users.noreply.github.com> Date: Fri, 21 Oct 2022 16:29:18 +0800 Subject: [PATCH] EE-4376 fix(docker): fix malformed struct of template (#7803) --- api/http/handler/templates/template_file.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/http/handler/templates/template_file.go b/api/http/handler/templates/template_file.go index 102a76644..3299f25cd 100644 --- a/api/http/handler/templates/template_file.go +++ b/api/http/handler/templates/template_file.go @@ -23,7 +23,7 @@ type filePayload struct { type fileResponse struct { // The requested file content - FileContent string `example: "version:2"` + FileContent string `example:"version:2"` } func (payload *filePayload) Validate(r *http.Request) error {