mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 17:11:49 +00:00
Move Cody Web to beta (#63806)
Closes https://linear.app/sourcegraph/issue/CODY-2847/change-experimental-labels-to-beta ## Test plan - Check that cody web page and cody web side panel have beta badges
This commit is contained in:
parent
1218b49d41
commit
fbb0a1fec1
@ -3,7 +3,7 @@ import type { FC } from 'react'
|
||||
import { CodyWebHistory, CodyWebChatProvider } from 'cody-web-experimental'
|
||||
import { Navigate } from 'react-router-dom'
|
||||
|
||||
import { Badge, ButtonLink, PageHeader, Text } from '@sourcegraph/wildcard'
|
||||
import { ButtonLink, PageHeader, ProductStatusBadge, Text } from '@sourcegraph/wildcard'
|
||||
|
||||
import { Page } from '../../../components/Page'
|
||||
import { PageTitle } from '../../../components/PageTitle'
|
||||
@ -95,9 +95,7 @@ const CodyPageHeader: FC<CodyPageHeaderProps> = props => {
|
||||
<PageHeader.Breadcrumb icon={CodyColorIcon}>
|
||||
<div className="d-inline-flex align-items-center">
|
||||
Cody Chat
|
||||
<Badge variant="info" className="ml-2">
|
||||
Experimental
|
||||
</Badge>
|
||||
<ProductStatusBadge status="beta" className="ml-2" />
|
||||
</div>
|
||||
</PageHeader.Breadcrumb>
|
||||
</PageHeader.Heading>
|
||||
|
||||
@ -4,7 +4,7 @@ import { mdiClose } from '@mdi/js'
|
||||
|
||||
import { CodyLogo } from '@sourcegraph/cody-ui'
|
||||
import { lazyComponent } from '@sourcegraph/shared/src/util/lazyComponent'
|
||||
import { Alert, Badge, Button, H4, Icon, LoadingSpinner } from '@sourcegraph/wildcard'
|
||||
import { Alert, Button, H4, Icon, LoadingSpinner, ProductStatusBadge } from '@sourcegraph/wildcard'
|
||||
|
||||
import styles from './NewCodySidebar.module.scss'
|
||||
|
||||
@ -32,7 +32,7 @@ export const NewCodySidebar: FC<NewCodySidebarProps> = props => {
|
||||
<CodyLogo />
|
||||
Cody
|
||||
<div className="ml-2">
|
||||
<Badge variant="info">Experimental</Badge>
|
||||
<ProductStatusBadge status="beta" />
|
||||
</div>
|
||||
</div>
|
||||
<Button variant="icon" aria-label="Close" onClick={onClose}>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user