Skip to content

Commit

Permalink
Update "Studio" to "DVC Studio" in titles (#5131)
Browse files Browse the repository at this point in the history
  • Loading branch information
julieg18 authored Dec 20, 2023
1 parent 2b97aeb commit 7258674
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1509,7 +1509,7 @@
},
{
"id": "dvc.views.studio",
"name": "Studio",
"name": "DVC Studio",
"when": "dvc.commands.available && dvc.project.available"
},
{
Expand Down
6 changes: 3 additions & 3 deletions webview/src/setup/components/App.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,7 @@ describe('App', () => {
const experiments = screen.getByText('Experiments')
expect(experiments).toBeInTheDocument()
expect(screen.queryByText(experimentsText)).not.toBeInTheDocument()
const studio = screen.getByText('Studio')
const studio = screen.getByText('DVC Studio')
expect(studio).toBeInTheDocument()
expect(screen.queryByText(studioButtonText)).not.toBeInTheDocument()
})
Expand All @@ -836,7 +836,7 @@ describe('App', () => {
}
})
mockPostMessage.mockClear()
const studio = screen.getByText('Studio')
const studio = screen.getByText('DVC Studio')
expect(studio).toBeInTheDocument()
expect(screen.queryByText(studioButtonText)).not.toBeInTheDocument()
const dvc = screen.getByText('DVC')
Expand All @@ -858,7 +858,7 @@ describe('App', () => {
}
})
mockPostMessage.mockClear()
const studio = screen.getByText('Studio')
const studio = screen.getByText('DVC Studio')
expect(studio).toBeInTheDocument()
expect(screen.getByText(studioButtonText)).toBeInTheDocument()
const dvc = screen.getByText('DVC')
Expand Down
2 changes: 1 addition & 1 deletion webview/src/setup/components/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ export const App: React.FC = () => {
</SetupContainer>
<SetupContainer
sectionKey={SetupSection.STUDIO}
title="Studio"
title="DVC Studio"
icon={getStudioStatusIcon(!!cliCompatible, isStudioConnected)}
>
<Studio
Expand Down
2 changes: 1 addition & 1 deletion webview/src/setup/components/studio/Connect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const Connect: React.FC<PropsWithChildren> = ({ children }) => {
<EmptyState isFullScreen={false}>
<div>
<h1>
Connect to <a href={DEFAULT_STUDIO_URL}>Studio</a>
Connect to <a href={DEFAULT_STUDIO_URL}>DVC Studio</a>
</h1>
{children}
<p>
Expand Down
2 changes: 1 addition & 1 deletion webview/src/setup/components/studio/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const Settings: React.FC<
return (
<EmptyState isFullScreen={false}>
<div>
<h1>Studio Settings</h1>
<h1>DVC Studio Settings</h1>
{children}
<div className={styles.studioSettings}>
<div className={styles.checkboxWrapper}>
Expand Down

0 comments on commit 7258674

Please sign in to comment.