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: '',
autoDownloadEpisodes: false,
language: '',
filenameFormat: '',
filenameFormat: '',
explicit: false,
type: ''
}

View File

@ -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: []

View File

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

View File

@ -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
}
}