Skip to content

Commit

Permalink
lowercase gateway in selector menu
Browse files Browse the repository at this point in the history
  • Loading branch information
rustyjux committed Jun 27, 2024
1 parent e8b455e commit b36d9e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/nextapp/components/namespace-menu/namespace-menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ const NamespaceMenu: React.FC<NamespaceMenuProps> = ({
<Box w={'403px'} maxHeight="calc(100vh / 2 + 100px)" overflowY="auto" >
<Box ml={6} w={'338px'}>
<SearchInput
placeholder="Find a Gateway by name or ID"
placeholder="Find a gateway by display name or ID"
onBlur={(event) => event.currentTarget.focus()}
onChange={handleSearchChange}
value={search}
Expand Down Expand Up @@ -219,7 +219,7 @@ const NamespaceMenu: React.FC<NamespaceMenuProps> = ({
</Box>
<Flex justifyContent='center' flexDirection='column' alignItems='center'>
<Text pt={8} fontSize='sm' fontWeight='bold'>
{`You have ${data.allNamespaces.length} Gateway${
{`You have ${data.allNamespaces.length} gateway${
data.allNamespaces.length !== 1 ? 's' : ''
} in total`}
</Text>
Expand All @@ -237,7 +237,7 @@ const NamespaceMenu: React.FC<NamespaceMenuProps> = ({
>
Go to the{' '}
<Text as="span" pl={1} textDecoration="underline" color="bc-link">
full Gateways list
full gateways list
</Text>
</MenuItem>
</Flex>
Expand Down

0 comments on commit b36d9e4

Please sign in to comment.