diff options
author | 2021-05-10 12:37:35 +0900 | |
---|---|---|
committer | 2021-05-10 10:37:35 +0700 | |
commit | f75360b181e1a91ebd45d71f23f0781fc85ff50d (patch) | |
tree | e9793c9b0e86c13bcc6dde4334ca398a530ca79b /source/features/quick-repo-deletion.tsx | |
parent | 30828a891c94f12cdd1595f27a13899b3fc4d203 (diff) | |
download | refined-github-f75360b181e1a91ebd45d71f23f0781fc85ff50d.tar.gz refined-github-f75360b181e1a91ebd45d71f23f0781fc85ff50d.tar.zst refined-github-f75360b181e1a91ebd45d71f23f0781fc85ff50d.zip |
Consistent button label in `quick-repo-deletion` (#4331)
Co-authored-by: yakov116 <16872793+yakov116@users.noreply.github.com>
Diffstat (limited to 'source/features/quick-repo-deletion.tsx')
-rw-r--r-- | source/features/quick-repo-deletion.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/quick-repo-deletion.tsx b/source/features/quick-repo-deletion.tsx index 5152a183..3860a52d 100644 --- a/source/features/quick-repo-deletion.tsx +++ b/source/features/quick-repo-deletion.tsx @@ -68,7 +68,7 @@ async function buttonTimeout(buttonContainer: HTMLDetailsElement): Promise<boole await delay(1000, {signal: abortController.signal}); // eslint-disable-line no-await-in-loop } while (--secondsLeft); } catch { - button.textContent = 'Delete repo'; + button.textContent = 'Delete fork'; button.style.transform = ''; } |