Skip to content

Commit

Permalink
Fix schedule calendar view (#7962)
Browse files Browse the repository at this point in the history
* Fix schedule calendar view

* Update changelog
  • Loading branch information
sharkykh authored Apr 13, 2020
1 parent 73d2834 commit 6a92780
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
- Fixed root dirs not always shown on Home page ([#7921](https://github.com/pymedusa/Medusa/pull/7921))
- Fixed starting medusa failed running python3.8 on windows ([#7940](https://github.com/pymedusa/Medusa/pull/7940))
- Fixed Speed.cd provider login ([#7941](https://github.com/pymedusa/Medusa/pull/7941))
- Fixed [#7959](https://github.com/pymedusa/Medusa/issues/7959) - UI bug on schedule calendar view ([#7962](https://github.com/pymedusa/Medusa/pull/7962))

-----

Expand Down
4 changes: 2 additions & 2 deletions themes-default/slim/views/partials/schedule/calendar.mako
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@
<tr>
<td class="calendarShow">
<div class="poster">
<app-link title="${cur_result['show_name']}" href="home/displayShow?indexername=${indexer_id_to_name(cur_result['indexer'])}&seriesid=${cur_result['showid']}">
<app-link title="${cur_result['show_name'] | h}" href="home/displayShow?indexername=${indexer_id_to_name(cur_result['indexer'])}&seriesid=${cur_result['showid']}">
<asset default="images/poster.png" show-slug="${cur_result['series_slug']}" type="posterThumb" :link="false"></asset>
</app-link>
</div>
<div class="text">
<span class="airtime">
${airtime} on ${cur_result["network"]}
</span>
<span class="episode-title" title="${cur_result['name']}">
<span class="episode-title" title="${cur_result['name'] | h}">
${'S%02iE%02i' % (int(cur_result['season']), int(cur_result['episode']))} - ${cur_result['name']}
</span>
</div>
Expand Down
4 changes: 2 additions & 2 deletions themes/dark/templates/partials/schedule/calendar.mako

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions themes/light/templates/partials/schedule/calendar.mako

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6a92780

Please sign in to comment.