diff --git a/client/components/cards/ItemUploadCard.vue b/client/components/cards/ItemUploadCard.vue
index 075c0fd4..51503374 100644
--- a/client/components/cards/ItemUploadCard.vue
+++ b/client/components/cards/ItemUploadCard.vue
@@ -21,15 +21,16 @@
-
-
{{ $strings.LabelDirectory }} (auto)
+
+ {{ $strings.LabelDirectory }}
+ (auto)
+
@@ -40,7 +41,10 @@
-
+
@@ -51,10 +55,10 @@
- {{ $strings.MessageUploaderItemSuccess }}
+ "{{ itemData.title }}" {{ $strings.MessageUploaderItemSuccess }}
- {{ $strings.MessageUploaderItemFailed }}
+ "{{ itemData.title }}" {{ $strings.MessageUploaderItemFailed }}
@@ -70,7 +74,7 @@ export default {
props: {
item: {
type: Object,
- default: () => { }
+ default: () => {}
},
mediaType: String,
processing: Boolean,
@@ -99,7 +103,7 @@ export default {
if (this.isPodcast) return this.itemData.title
const outputPathParts = [this.itemData.author, this.itemData.series, this.itemData.title]
- const cleanedOutputPathParts = outputPathParts.filter(Boolean).map(part => this.$sanitizeFilename(part))
+ const cleanedOutputPathParts = outputPathParts.filter(Boolean).map((part) => this.$sanitizeFilename(part))
return Path.join(...cleanedOutputPathParts)
},