adding missing action types to Agent activity UI (#144437)

This commit is contained in:
Julia Bardi 2022-11-02 17:02:47 +01:00 committed by GitHub
parent c1070e63a1
commit 6412057399
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -259,6 +259,16 @@ const actionNames: {
completedText: 'updated settings',
cancelledText: 'update settings',
},
POLICY_CHANGE: {
inProgressText: 'Changing policy of',
completedText: 'changed policy',
cancelledText: 'change policy',
},
INPUT_ACTION: {
inProgressText: 'Input action in progress of',
completedText: 'input action completed',
cancelledText: 'input action',
},
ACTION: { inProgressText: 'Actioning', completedText: 'actioned', cancelledText: 'action' },
};