Skip to content

Commit d68193d

Browse files
authored
Update web_src/js/features/repo-issue.ts
Signed-off-by: wxiaoguang <[email protected]>
1 parent f121c81 commit d68193d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web_src/js/features/repo-issue.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ export function initRepoIssueWipToggle() {
427427
params.append('title', title?.startsWith(wipPrefix) ? title.slice(wipPrefix.length).trim() : `${wipPrefix.trim()} ${title}`);
428428
const response = await POST(updateUrl, {data: params});
429429
if (!response.ok) {
430-
showErrorToast('Failed to toggle WIP status');
430+
showErrorToast(`Failed to toggle 'work in progress' status`);
431431
return;
432432
}
433433
window.location.reload();

0 commit comments

Comments
 (0)