We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb0a900 commit 4f38868Copy full SHA for 4f38868
web_src/js/features/repo-release.ts
@@ -81,11 +81,11 @@ function initGenerateReleaseNotes() {
81
data: form,
82
});
83
84
+ const data = await resp.json();
85
+
86
if (!resp.ok) {
87
throw new Error(data.errorMessage || resp.statusText);
88
}
-
- const data = await resp.json();
89
previousTagSelect.value = data.previous_tag;
90
previousTagSelect.dispatchEvent(new Event('change', {bubbles: true}));
91
0 commit comments