diff --git a/command/title_body_survey.go b/command/title_body_survey.go index 1dcf3c668..53de6cf2b 100644 --- a/command/title_body_survey.go +++ b/command/title_body_survey.go @@ -164,7 +164,8 @@ func titleBodySurvey(cmd *cobra.Command, issueState *issueMetadataState, apiClie } issueState.Body = templateContents } else if legacyTemplatePath != nil { - issueState.Body = string(githubtemplate.ExtractContents(*legacyTemplatePath)) + templateContents = string(githubtemplate.ExtractContents(*legacyTemplatePath)) + issueState.Body = templateContents } else { issueState.Body = defs.Body }