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 f121c81 commit d68193dCopy full SHA for d68193d
web_src/js/features/repo-issue.ts
@@ -427,7 +427,7 @@ export function initRepoIssueWipToggle() {
427
params.append('title', title?.startsWith(wipPrefix) ? title.slice(wipPrefix.length).trim() : `${wipPrefix.trim()} ${title}`);
428
const response = await POST(updateUrl, {data: params});
429
if (!response.ok) {
430
- showErrorToast('Failed to toggle WIP status');
+ showErrorToast(`Failed to toggle 'work in progress' status`);
431
return;
432
}
433
window.location.reload();
0 commit comments