diff options
author | 2023-02-05 19:38:56 +0800 | |
---|---|---|
committer | 2023-02-05 19:38:56 +0800 | |
commit | c9f461fe54a24d1b3970399a3f6e9703e2daae51 (patch) | |
tree | d1f7207bbc90301dcfb333f2bffa515f16660116 /source/options-storage.ts | |
parent | b6ed5cbcbbf8cf2a9e56d9df4f402c796d54437f (diff) | |
download | refined-github-23.2.5.tar.gz refined-github-23.2.5.tar.zst refined-github-23.2.5.zip |
Fix `github-actions-indicators` wording and tooltip (#6256)23.2.5
Diffstat (limited to 'source/options-storage.ts')
-rw-r--r-- | source/options-storage.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/options-storage.ts b/source/options-storage.ts index b8b68376..4a365305 100644 --- a/source/options-storage.ts +++ b/source/options-storage.ts @@ -36,7 +36,7 @@ export const renamedFeatures = new Map<string, string>([ ['navigate-pages-with-arrow-keys', 'pagination-hotkey'], ['list-pr-for-branch', 'list-prs-for-branch'], ['quick-label-hiding', 'quick-label-removal'], - ['next-scheduled-github-action', 'scheduled-and-manual-workflow-indicators'], + ['next-scheduled-github-action', 'github-actions-indicators'], ['raw-file-link', 'more-file-links'], ['conversation-filters', 'more-conversation-filters'], ['quick-pr-diff-options', 'one-click-diff-options'], @@ -44,6 +44,7 @@ export const renamedFeatures = new Map<string, string>([ ['wait-for-build', 'wait-for-checks'], ['pull-request-hotkey', 'pull-request-hotkeys'], ['first-published-tag-for-merged-pr', 'closing-remarks'], + ['scheduled-and-manual-workflow-indicators', 'github-actions-indicators'], ]); export function getNewFeatureName(possibleFeatureName: string): FeatureID | undefined { |