Skip to content

Commit

Permalink
fix(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
2 people authored and rexxars committed Aug 10, 2022
1 parent 655ce50 commit 84ae343
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

0 comments on commit 84ae343

Please sign in to comment.