Fix contribution status tag display.

This commit is contained in:
Will O'Beirne 2019-02-25 15:06:30 -05:00
parent 8a193756b3
commit 2662e20389
No known key found for this signature in database
GPG Key ID: 44C190DB5DEAF9F6
1 changed files with 5 additions and 3 deletions

View File

@ -128,7 +128,8 @@ export const PROPOSAL_STAGES: Array<StatusSoT<PROPOSAL_STAGE>> = [
id: PROPOSAL_STAGE.CANCELED,
tagDisplay: 'Canceled',
tagColor: '#eb4118',
hint: 'Proposal was canceled by an admin and is currently refunding all contributors.',
hint:
'Proposal was canceled by an admin and is currently refunding all contributors.',
},
];
@ -190,9 +191,10 @@ export const CONTRIBUTION_STATUSES: Array<StatusSoT<CONTRIBUTION_STATUS>> = [
},
{
id: CONTRIBUTION_STATUS.DELETED,
tagDisplay: 'Closed',
tagDisplay: 'Deleted',
tagColor: '#eb4118',
hint: 'User deleted the contribution before it was sent or confirmed',
hint:
'User deleted the contribution before it was sent, or after it didnt confirm after 24 hours',
},
];