Skip to content

Commit

Permalink
fix titles (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenClontz authored May 11, 2024
1 parent 41c1b9b commit 2b3bf08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
export let data: PageData
$: title = `S${data.theorem.id}: ${data.theorem.name}`
$: title = `T${data.theorem.id}: ${data.theorem.name}`
</script>

<Title {title} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
export let data: PageData
$: title = `S${data.theorem.id}: ${data.theorem.name}`
$: title = `T${data.theorem.id}: ${data.theorem.name}`
</script>

<Title {title} />
Expand Down

0 comments on commit 2b3bf08

Please sign in to comment.