Browse Source

Add sentryapp types to filter (#34979)

Marcos Gaeta 2 years ago
parent
commit
617fcae084

+ 1 - 1
static/app/views/settings/organizationAuditLog/auditLogList.tsx

@@ -41,7 +41,7 @@ const AuditLogList = ({
   const hasEntries = entries && entries.length > 0;
   const ipv4Length = 15;
   const options = [
-    {value: '', label: t('Any action'), clearableVaue: false},
+    {value: '', label: t('Any action'), clearableValue: false},
     ...eventTypes.map(type => ({label: type, value: type, clearableValue: false})),
   ];
 

+ 4 - 0
static/app/views/settings/organizationAuditLog/index.tsx

@@ -63,6 +63,10 @@ const EVENT_TYPES = [
   'trial.started',
   'plan.changed',
   'plan.cancelled',
+  'sentry-app.add',
+  'sentry-app.remove',
+  'sentry-app.install',
+  'sentry-app.uninstall',
 ];
 
 type Props = RouteComponentProps<{orgId: string}, {}> &