Skip to content

Commit

Permalink
Fix changing process method in Manual PP (#10220)
Browse files Browse the repository at this point in the history
* Fix changing process method in Manual PP.

* Update changelog

* yarn dev
  • Loading branch information
p0psicles authored Jan 2, 2022
1 parent 2266228 commit a151b09
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
- Fix displayShow search subtitle button ([10214](https://github.com/pymedusa/Medusa/pull/10214))
- Prevent failedDownloads from errorring, when a provider has been deleted ([10214](https://github.com/pymedusa/Medusa/pull/10214))
- Fix mass update status page, start a new snatch when changing status to failed. ([10213](https://github.com/pymedusa/Medusa/pull/10213))
- Fix changing process method in manual postprocessing. ([10220](https://github.com/pymedusa/Medusa/pull/10220))

-----

Expand Down
2 changes: 1 addition & 1 deletion themes-default/slim/src/components/manual-post-process.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<div class="col-xs-12 col-lg-9">
<config-template label="Process Method to be used" label-for="process_method">
<select id="process_method" name="process_method" :value="postprocessing.processMethod" @update="processMethod = $event" class="form-control input-sm">
<select id="process_method" name="process_method" :value="processMethod" @input="processMethod = $event.target.value" class="form-control input-sm">
<option v-for="option in availableMethods" :value="option.value" :key="option.value">
{{option.text}}
</option>
Expand Down
Loading

0 comments on commit a151b09

Please sign in to comment.