Skip to content

Commit ae98773

Browse files
committed
Fixed type (while / will).
* Hide the name-pattern legend, when changing from custom pattern to preset.
1 parent 4a3b684 commit ae98773

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

themes-default/slim/static/js/templates/name-pattern.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</div>
3737
</div>
3838

39-
<div id="naming_key" class="nocheck" v-if="showLegend">
39+
<div id="naming_key" class="nocheck" v-if="showLegend && isCustom">
4040
<table class="Key">
4141
<thead>
4242
<tr>

themes-default/slim/views/config_postProcessing.mako

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ window.app = new Vue({
201201
<div class="component-group-desc col-xs-12 col-md-2">
202202
<h3>Scheduled Post-Processing</h3>
203203
<p>Settings that dictate how Medusa should process completed downloads.</p>
204-
<p>The scheduled postprocessor while periodically scan a folder for media to process.</p>
204+
<p>The scheduled postprocessor will periodically scan a folder for media to process.</p>
205205
</div>
206206
207207
<div class="col-xs-12 col-md-10">

themes/dark/assets/js/templates/name-pattern.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</div>
3737
</div>
3838

39-
<div id="naming_key" class="nocheck" v-if="showLegend">
39+
<div id="naming_key" class="nocheck" v-if="showLegend && isCustom">
4040
<table class="Key">
4141
<thead>
4242
<tr>

themes/dark/templates/config_postProcessing.mako

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ window.app = new Vue({
201201
<div class="component-group-desc col-xs-12 col-md-2">
202202
<h3>Scheduled Post-Processing</h3>
203203
<p>Settings that dictate how Medusa should process completed downloads.</p>
204-
<p>The scheduled postprocessor while periodically scan a folder for media to process.</p>
204+
<p>The scheduled postprocessor will periodically scan a folder for media to process.</p>
205205
</div>
206206
207207
<div class="col-xs-12 col-md-10">

themes/light/assets/js/templates/name-pattern.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</div>
3737
</div>
3838

39-
<div id="naming_key" class="nocheck" v-if="showLegend">
39+
<div id="naming_key" class="nocheck" v-if="showLegend && isCustom">
4040
<table class="Key">
4141
<thead>
4242
<tr>

themes/light/templates/config_postProcessing.mako

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ window.app = new Vue({
201201
<div class="component-group-desc col-xs-12 col-md-2">
202202
<h3>Scheduled Post-Processing</h3>
203203
<p>Settings that dictate how Medusa should process completed downloads.</p>
204-
<p>The scheduled postprocessor while periodically scan a folder for media to process.</p>
204+
<p>The scheduled postprocessor will periodically scan a folder for media to process.</p>
205205
</div>
206206
207207
<div class="col-xs-12 col-md-10">

0 commit comments

Comments
 (0)