Update:Podcast episodes look for new episodes after this date add input to set the max # of episodes to download

This commit is contained in:
advplyr 2022-09-03 08:06:52 -05:00
parent c17612a233
commit 3dc848a106
4 changed files with 35 additions and 11 deletions

View file

@ -5,7 +5,7 @@
{{ label }}<em v-if="note" class="font-normal text-xs pl-2">{{ note }}</em>
</p>
</slot>
<ui-text-input ref="input" v-model="inputValue" :disabled="disabled" :readonly="readonly" :type="type" class="w-full" @blur="inputBlurred" />
<ui-text-input ref="input" v-model="inputValue" :disabled="disabled" :readonly="readonly" :type="type" class="w-full" :class="inputClass" @blur="inputBlurred" />
</div>
</template>
@ -20,7 +20,8 @@ export default {
default: 'text'
},
readonly: Boolean,
disabled: Boolean
disabled: Boolean,
inputClass: String
},
data() {
return {}