From decd22c42508378a7436010e8a2fcd1128ad606f Mon Sep 17 00:00:00 2001 From: Harish Govindarajulu Date: Mon, 17 Nov 2025 20:54:43 +0530 Subject: [PATCH] fix(ui): Add missing operation types to usage logs chart (PROJQUAY-6881) (#4530) * fix(ui): Add missing operation types to usage logs chart (PROJQUAY-6881) Signed-off-by: harishsurf * Apply suggestion from @coderabbitai[bot] Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --------- Signed-off-by: harishsurf Co-authored-by: jbpratt Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- web/src/routes/UsageLogs/UsageLogs.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/web/src/routes/UsageLogs/UsageLogs.tsx b/web/src/routes/UsageLogs/UsageLogs.tsx index cbb51d94b..8a5f0cc1d 100644 --- a/web/src/routes/UsageLogs/UsageLogs.tsx +++ b/web/src/routes/UsageLogs/UsageLogs.tsx @@ -273,6 +273,12 @@ export const logKinds = { oauth_token_assigned: 'OAuth token assigned', enable_team_sync: 'Enable Team Sync', disable_team_sync: 'Disable Team Sync', + add_repo_webhook: 'Add webhook', + delete_repo_webhook: 'Delete webhook', + delete_tag_failed: 'Delete Tag failed', + login_failure: 'Login failure', + pull_repo_failed: 'Pull repository failed', + push_repo_failed: 'Push to repository failed', export_logs_success: 'Export logs queued for delivery', export_logs_failure: 'Export logs failure', };