Skip to content

Commit

Permalink
fix anchor
Browse files Browse the repository at this point in the history
  • Loading branch information
kavics committed Nov 20, 2023
1 parent 29f8860 commit 2034949
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/sensenet/src/components/settings/content-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const useStyles = makeStyles((theme: Theme) => {

export const SETUP_DOCS_URL = 'https://docs.sensenet.com/guides/settings/setup'

export const createAnchorFromName = (name: string) => `#${name.replace('.', '-').toLocaleLowerCase()}`
export const createAnchorFromName = (name: string) => `#${name.toLocaleLowerCase()}`

type ContentCardProps = {
settings: Settings
Expand Down

0 comments on commit 2034949

Please sign in to comment.