Skip to content

Commit

Permalink
bug(dashboard): fix typo in banner, open link in new pane (#3486)
Browse files Browse the repository at this point in the history
Co-authored-by: Fred Carlsen <fred@sjelfull.no>
  • Loading branch information
ninaandal and sjelfull committed Aug 8, 2022
1 parent 655ce50 commit ef0dd1c
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ class SanityTutorials extends React.Component {

render() {
const {title = 'Learn about Sanity', feedItems} = this.state
const {templateRepoId} = this.props

// Filter out items and sections for layout purposes
const sections = feedItems.filter((i) => i._type === 'feedSection')
Expand All @@ -81,9 +80,9 @@ class SanityTutorials extends React.Component {
<Card tone="primary" padding={4} radius={2} border marginTop={4}>
<Flex direction={['column', 'column', 'row']}>
<Stack space={4} flex={1} paddingRight={[0, 0, 4]}>
<Heading>Getting started Guide</Heading>
<Heading>Getting started guide</Heading>
<Text>
Its time to learn how to build schemas, create content and connect it with other
It's time to learn how to build schemas, create content, and connect it to other
applications.
</Text>
</Stack>
Expand All @@ -94,8 +93,9 @@ class SanityTutorials extends React.Component {
paddingX={5}
tone="primary"
as="a"
href={`https://www.sanity.io/docs?ref=dashboard-${templateRepoId || 'plugin'}`}
text="Go go docs"
target="_blank"
href="https://www.sanity.io/docs?ref=studio-dashboard"
text="Go to docs"
/>
</Stack>
</Flex>
Expand Down

2 comments on commit ef0dd1c

@vercel
Copy link

@vercel vercel bot commented on ef0dd1c Aug 8, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

studio-workshop – ./

studio-workshop-git-next.sanity.build
studio-workshop.sanity.build

@vercel
Copy link

@vercel vercel bot commented on ef0dd1c Aug 8, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

test-studio – ./

test-studio-git-next.sanity.build
test-studio.sanity.build

Please sign in to comment.