mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-06-23 01:18:59 +02:00
further linting
This commit is contained in:
parent
8ea37784ca
commit
f1a0e54c04
@ -98,7 +98,7 @@ export default {
|
||||
itunesArtistId: '',
|
||||
autoDownloadEpisodes: false,
|
||||
language: '',
|
||||
filenameFormat: '',
|
||||
filenameFormat: '',
|
||||
explicit: false,
|
||||
type: ''
|
||||
}
|
||||
|
@ -45,13 +45,13 @@
|
||||
</div>
|
||||
<div class="w-1/4 px-1">
|
||||
<ui-text-input-with-label ref="podcastFilenameFormatInput" v-model="details.podcastFilenameFormat" :label="$strings.PodcastFilenameFormatHelp" trim-whitespace @input="handleInputChange" >
|
||||
<div class="flex -mb-0.5">
|
||||
<p class="px-1 text-sm font-semibold" :class="{ 'text-gray-400': checkingNewEpisodes }">{{ $strings.PodcastFilenameFormatHelp }}</p>
|
||||
<ui-tooltip direction="top" :text="$strings.PodcastFilenameFormatHelpContent">
|
||||
<span class="material-symbols text-base">info</span>
|
||||
</ui-tooltip>
|
||||
</div>
|
||||
</ui-text-input-with-label>
|
||||
<div class="flex -mb-0.5">
|
||||
<p class="px-1 text-sm font-semibold" :class="{ 'text-gray-400': checkingNewEpisodes }">{{ $strings.PodcastFilenameFormatHelp }}</p>
|
||||
<ui-tooltip direction="top" :text="$strings.PodcastFilenameFormatHelpContent">
|
||||
<span class="material-symbols text-base">info</span>
|
||||
</ui-tooltip>
|
||||
</div>
|
||||
</ui-text-input-with-label>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
@ -81,7 +81,7 @@ export default {
|
||||
itunesArtistId: null,
|
||||
explicit: false,
|
||||
language: null,
|
||||
podcastFilenameFormat: null,
|
||||
podcastFilenameFormat: null,
|
||||
type: null
|
||||
},
|
||||
newTags: []
|
||||
|
@ -622,7 +622,7 @@ class PodcastManager {
|
||||
itunesId: '',
|
||||
itunesArtistId: '',
|
||||
language: '',
|
||||
podcastFilenameFormat: '',
|
||||
podcastFilenameFormat: '',
|
||||
numEpisodes: feed.numEpisodes
|
||||
}
|
||||
}
|
||||
|
@ -134,7 +134,7 @@ class Podcast extends Model {
|
||||
itunesId: DataTypes.STRING,
|
||||
itunesArtistId: DataTypes.STRING,
|
||||
language: DataTypes.STRING,
|
||||
podcastFilenameFormat: DataTypes.STRING,
|
||||
podcastFilenameFormat: DataTypes.STRING,
|
||||
podcastType: DataTypes.STRING,
|
||||
explicit: DataTypes.BOOLEAN,
|
||||
|
||||
@ -391,7 +391,7 @@ class Podcast extends Model {
|
||||
itunesArtistId: this.itunesArtistId,
|
||||
explicit: this.explicit,
|
||||
language: this.language,
|
||||
podcastFilenameFormat: this.podcastFilenameFormat,
|
||||
podcastFilenameFormat: this.podcastFilenameFormat,
|
||||
type: this.podcastType
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user