feat: Add CSAT response submit action (#2506)

Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
This commit is contained in:
Muhsin Keloth 2021-06-25 12:00:49 +05:30 committed by GitHub
parent 2f9637bde5
commit dbddb1ece4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 103 additions and 29 deletions

View file

@ -17,26 +17,26 @@ export const CSAT_RATINGS = [
{
key: 'disappointed',
emoji: '😞',
value: 0,
value: 1,
},
{
key: 'expressionless',
emoji: '😑',
value: 1,
value: 2,
},
{
key: 'neutral',
emoji: '😐',
value: 2,
value: 3,
},
{
key: 'grinning',
emoji: '😀',
value: 3,
value: 4,
},
{
key: 'smiling',
emoji: '😍',
value: 4,
value: 5,
},
];