Browse Source

feat(perf-issues): add consecutive db detector to issue search bar (#43554)

![image](https://user-images.githubusercontent.com/44422760/214116158-ca335c6b-5449-4c4d-947b-fea5422157ea.png)
Dominik Buszowiecki 2 years ago
parent
commit
c007e376f0
1 changed files with 5 additions and 1 deletions
  1. 5 1
      static/app/stores/tagStore.tsx

+ 5 - 1
static/app/stores/tagStore.tsx

@@ -87,7 +87,11 @@ const storeConfig: TagStoreDefinition = {
       [FieldKey.ISSUE_TYPE]: {
         key: FieldKey.ISSUE_TYPE,
         name: 'Issue Type',
-        values: ['performance_n_plus_one_db_queries', 'performance_n_plus_one_api_calls'],
+        values: [
+          'performance_n_plus_one_db_queries',
+          'performance_n_plus_one_api_calls',
+          'performance_consecutive_db_queries',
+        ],
         predefined: true,
       },
       [FieldKey.LAST_SEEN]: {