further linting

This commit is contained in:
MagiX13 2025-05-24 20:46:11 +02:00
parent 8ea37784ca
commit f1a0e54c04
4 changed files with 12 additions and 12 deletions

View file

@ -98,7 +98,7 @@ export default {
itunesArtistId: '', itunesArtistId: '',
autoDownloadEpisodes: false, autoDownloadEpisodes: false,
language: '', language: '',
filenameFormat: '', filenameFormat: '',
explicit: false, explicit: false,
type: '' type: ''
} }

View file

@ -45,13 +45,13 @@
</div> </div>
<div class="w-1/4 px-1"> <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" > <ui-text-input-with-label ref="podcastFilenameFormatInput" v-model="details.podcastFilenameFormat" :label="$strings.PodcastFilenameFormatHelp" trim-whitespace @input="handleInputChange" >
<div class="flex -mb-0.5"> <div class="flex -mb-0.5">
<p class="px-1 text-sm font-semibold" :class="{ 'text-gray-400': checkingNewEpisodes }">{{ $strings.PodcastFilenameFormatHelp }}</p> <p class="px-1 text-sm font-semibold" :class="{ 'text-gray-400': checkingNewEpisodes }">{{ $strings.PodcastFilenameFormatHelp }}</p>
<ui-tooltip direction="top" :text="$strings.PodcastFilenameFormatHelpContent"> <ui-tooltip direction="top" :text="$strings.PodcastFilenameFormatHelpContent">
<span class="material-symbols text-base">info</span> <span class="material-symbols text-base">info</span>
</ui-tooltip> </ui-tooltip>
</div> </div>
</ui-text-input-with-label> </ui-text-input-with-label>
</div> </div>
</div> </div>
</form> </form>
@ -81,7 +81,7 @@ export default {
itunesArtistId: null, itunesArtistId: null,
explicit: false, explicit: false,
language: null, language: null,
podcastFilenameFormat: null, podcastFilenameFormat: null,
type: null type: null
}, },
newTags: [] newTags: []

View file

@ -622,7 +622,7 @@ class PodcastManager {
itunesId: '', itunesId: '',
itunesArtistId: '', itunesArtistId: '',
language: '', language: '',
podcastFilenameFormat: '', podcastFilenameFormat: '',
numEpisodes: feed.numEpisodes numEpisodes: feed.numEpisodes
} }
} }

View file

@ -134,7 +134,7 @@ class Podcast extends Model {
itunesId: DataTypes.STRING, itunesId: DataTypes.STRING,
itunesArtistId: DataTypes.STRING, itunesArtistId: DataTypes.STRING,
language: DataTypes.STRING, language: DataTypes.STRING,
podcastFilenameFormat: DataTypes.STRING, podcastFilenameFormat: DataTypes.STRING,
podcastType: DataTypes.STRING, podcastType: DataTypes.STRING,
explicit: DataTypes.BOOLEAN, explicit: DataTypes.BOOLEAN,
@ -391,7 +391,7 @@ class Podcast extends Model {
itunesArtistId: this.itunesArtistId, itunesArtistId: this.itunesArtistId,
explicit: this.explicit, explicit: this.explicit,
language: this.language, language: this.language,
podcastFilenameFormat: this.podcastFilenameFormat, podcastFilenameFormat: this.podcastFilenameFormat,
type: this.podcastType type: this.podcastType
} }
} }