Skip to content

Commit

Permalink
Merge pull request #70 from marcoschneider/feature/module-url-fix
Browse files Browse the repository at this point in the history
Module URLs not working anymore because of studien.rj.ost.ch change to studien.ost.ch
  • Loading branch information
jeremystucki authored Jun 6, 2024
2 parents d566105 + 0a11878 commit de3eec5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Focus.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<a
class="hover:underline"
target="_blank"
:href="'https://studien.rj.ost.ch/' + module.url.replace('.json', '.html')"
:href="'https://studien.ost.ch/' + module.url.replace('.json', '.html')"
>{{ module.name }}
</a>
</li>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Module.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<a
class="font-bold hover:underline"
target="_blank"
:href="'https://studien.rj.ost.ch/' + module.url.replace('.json', '.html')"
:href="'https://studien.ost.ch/' + module.url.replace('.json', '.html')"
>{{ module.name }}
</a>
<p>{{ module.ects }} ECTS</p>
Expand Down

0 comments on commit de3eec5

Please sign in to comment.