Skip to content

Commit

Permalink
apply review feedback (fix massive bug)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattseddon committed Mar 14, 2023
1 parent a8f98f4 commit 375cdfe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion webview/src/shared/components/emptyState/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@

.emptySection {
width: 100%;
height: 33vh;
min-height: 33vh;
height: auto;
}

.emptyStateText {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import cx from 'classnames'
import React, { MouseEvent } from 'react'
import { Section as PlotsSection } from 'dvc/src/plots/webview/contract'
import { Section as SetupSection } from 'dvc/src/setup/webview/contract'
import {
STUDIO_URL,
Section as SetupSection
} from 'dvc/src/setup/webview/contract'
import styles from './styles.module.scss'
import { Icon } from '../Icon'
import { ChevronDown, ChevronRight, Info } from '../icons'
Expand Down Expand Up @@ -71,7 +74,7 @@ export const SectionDescription = {
[SetupSection.STUDIO]: (
<span data-testid="tooltip-setup-studio">
{"Configure the extension's connection to "}
<a href="https://studio.iterative.a">Studio</a>.<br />
<a href={STUDIO_URL}>Studio</a>.<br />
Studio provides a collaboration platform for Machine Learning and is free
for small teams and individual contributors.
</span>
Expand Down

0 comments on commit 375cdfe

Please sign in to comment.