From d907d9918d7ae93dfe45f42309814c5ffab97015 Mon Sep 17 00:00:00 2001 From: Daniel Hu Date: Wed, 26 Apr 2023 16:39:17 +0800 Subject: [PATCH] fix: a small bug fixed Signed-off-by: Daniel Hu --- .github/ISSUE_TEMPLATE/bug-report.yaml | 4 ++-- cmd/patch.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yaml b/.github/ISSUE_TEMPLATE/bug-report.yaml index 67e900cea..305d16f2f 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yaml +++ b/.github/ISSUE_TEMPLATE/bug-report.yaml @@ -28,8 +28,8 @@ body: label: 'DevStream Version' description: "To find out the version run: `dtm version`" options: - - < v0.11.0 - - v0.11.0 + - < v0.13.0 + - v0.13.0 - latest validations: required: true diff --git a/cmd/patch.go b/cmd/patch.go index ac11ec684..6172acd84 100644 --- a/cmd/patch.go +++ b/cmd/patch.go @@ -39,7 +39,7 @@ e.g. r.Print(OutputFormat) os.Exit(1) } - r := response.New(response.StatusError, response.MessageOK, "") + r := response.New(response.StatusOK, response.MessageOK, "") r.Print(OutputFormat) }, }