Skip to content

Commit

Permalink
Fix ShowHeader status/quality selector (#6784)
Browse files Browse the repository at this point in the history
* Fix ShowHeader status/quality selector

* Update changelog
  • Loading branch information
sharkykh authored and medariox committed Jun 6, 2019
1 parent 93eb248 commit 30236cd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#### Improvements

#### Fixes
- Fixed error when changing episode quality but not changing status ([#6784](https://github.com/pymedusa/Medusa/pull/6784))

-----

Expand Down
4 changes: 2 additions & 2 deletions themes-default/slim/src/components/show-header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -246,14 +246,14 @@
<div class="pull-lg-right top-5">

<select id="statusSelect" class="form-control form-control-inline input-sm-custom input-sm-smallfont">
<option>Change status to:</option>
<option :value="null">Change status to:</option>
<option v-for="status in changeStatusOptions" :key="status.key" :value="status.value">
{{ status.name }}
</option>
</select>

<select id="qualitySelect" class="form-control form-control-inline input-sm-custom input-sm-smallfont">
<option>Change quality to:</option>
<option :value="null">Change quality to:</option>
<option v-for="quality in qualities" :key="quality.key" :value="quality.value">
{{ quality.name }}
</option>
Expand Down
2 changes: 1 addition & 1 deletion themes/dark/assets/js/medusa-runtime.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion themes/light/assets/js/medusa-runtime.js

Large diffs are not rendered by default.

0 comments on commit 30236cd

Please sign in to comment.