Browse Source

feat(discover-homepage): Change beta badge to new badge (#40829)

Change the feature badge to the "new' badge on the "Set as Default" and
"Remove Default" buttons
Nar Saynorath 2 years ago
parent
commit
e938c1f6b0
1 changed files with 2 additions and 2 deletions
  1. 2 2
      static/app/views/eventsV2/savedQuery/index.tsx

+ 2 - 2
static/app/views/eventsV2/savedQuery/index.tsx

@@ -489,7 +489,7 @@ class SavedQueryButtonGroup extends PureComponent<Props, State> {
           disabled={buttonDisabled}
         >
           {t('Remove Default')}
-          <FeatureBadge type="beta" />
+          <FeatureBadge type="new" />
         </Button>
       );
     }
@@ -517,7 +517,7 @@ class SavedQueryButtonGroup extends PureComponent<Props, State> {
         disabled={buttonDisabled}
       >
         {t('Set as Default')}
-        <FeatureBadge type="beta" />
+        <FeatureBadge type="new" />
       </Button>
     );
   }