fixed glosarry label condition (#20454)

This commit is contained in:
Dhruv Parmar 2025-03-27 10:23:59 +05:30 committed by GitHub
parent 29780dbac5
commit 953892078c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -334,6 +334,8 @@ const getGlossaryTermApprovalText = (fieldsChanged: FieldChange[]) => {
status:
statusFieldDiff.newValue === 'Approved'
? t('label.approved')
: statusFieldDiff.newValue === 'In Review'
? t('label.in-review')
: t('label.rejected'),
});
}