Browse Source

fix(saved-searches): Use gray300 for `<TooltipSearchQuery />` (#32859)

Vu Luong 3 years ago
parent
commit
d03efa5b47
1 changed files with 1 additions and 1 deletions
  1. 1 1
      static/app/views/issueList/savedSearchMenu.tsx

+ 1 - 1
static/app/views/issueList/savedSearchMenu.tsx

@@ -163,7 +163,7 @@ const SearchSort = styled('span')`
 `;
 
 const TooltipSearchQuery = styled('span')`
-  color: ${p => p.theme.gray200};
+  color: ${p => p.theme.subText};
   font-weight: normal;
   font-family: ${p => p.theme.text.familyMono};
 `;