diff options
author | 2022-09-12 07:26:23 +0200 | |
---|---|---|
committer | 2022-09-12 12:26:23 +0700 | |
commit | 1fc597d73bc75b3658ac593ad09d6cf515e475ef (patch) | |
tree | dbb65525bd4759c4076bfdff8d2c6d7a08362da7 /source/features/list-prs-for-branch.tsx | |
parent | ef7885e5c01997bbe4626e119e5ae78efae619f4 (diff) | |
download | refined-github-1fc597d73bc75b3658ac593ad09d6cf515e475ef.tar.gz refined-github-1fc597d73bc75b3658ac593ad09d6cf515e475ef.tar.zst refined-github-1fc597d73bc75b3658ac593ad09d6cf515e475ef.zip |
Meta: Drop deprecated color classes (#5965)
Diffstat (limited to 'source/features/list-prs-for-branch.tsx')
-rw-r--r-- | source/features/list-prs-for-branch.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/features/list-prs-for-branch.tsx b/source/features/list-prs-for-branch.tsx index b1e49af3..bac9ddc8 100644 --- a/source/features/list-prs-for-branch.tsx +++ b/source/features/list-prs-for-branch.tsx @@ -9,9 +9,9 @@ import {getPullRequestsAssociatedWithBranch, stateIcon} from './show-associated- // Taken from https://github.com/fregante/github-issue-link-status/blob/98792f2837352bacbf80664f3edbcec8e579ed17/source/github-issue-link-status.js#L10 const stateColorMap = { - OPEN: 'color-text-success color-fg-success', - CLOSED: 'color-text-danger color-fg-danger', - MERGED: 'color-purple-5 color-fg-done', + OPEN: 'color-fg-success', + CLOSED: 'color-fg-danger', + MERGED: 'color-fg-done', DRAFT: '', }; |