@@ -6,14 +6,6 @@ import { useNotification } from '@/composables/useNotification'
66import { useTvShows } from ' ../composables/useTvShows'
77import { useSettingsStore } from ' @/stores/settings'
88
9- // Define props and emits to avoid Vue warnings
10- defineProps <{
11- search? : string
12- }>()
13-
14- defineEmits <{
15- select: [value : any ]
16- }>()
179
1810type TvShow = {
1911 key: string
@@ -480,11 +472,11 @@ const fetchLabelsFromCache = async () => {
480472 }
481473 })
482474
483- console .log (` [BatchEdit ] Loaded ${labelsFound } label sets from backend cache for library ${currentLibrary .value } ` )
475+ console .log (` [TvBatchEdit ] Loaded ${labelsFound } label sets from backend cache for library ${currentLibrary .value } ` )
484476 saveLabelCache ()
485477 }
486478 } catch (e ) {
487- console .warn (' [BatchEdit ] Failed to load labels from cache:' , e )
479+ console .warn (' [TvBatchEdit ] Failed to load labels from cache:' , e )
488480 }
489481}
490482
@@ -513,7 +505,7 @@ const fetchLabels = async (list: TvShow[]) => {
513505 labelInFlight .delete (movieKey )
514506 })
515507 saveLabelCache ()
516- console .log (` [BatchEdit ] Loaded ${Object .keys (bulkData .labels || {}).length } label sets via bulk endpoint ` )
508+ console .log (` [TvBatchEdit ] Loaded ${Object .keys (bulkData .labels || {}).length } label sets via bulk endpoint ` )
517509 return
518510 }
519511 }
@@ -1472,17 +1464,6 @@ onMounted(async () => {
14721464
14731465 <!-- Template & Preset Selection -->
14741466 <div class =" selection-row template-row" >
1475- <!-- Template selector hidden - only uniformlogo template exists -->
1476- <div v-if =" false" class =" form-group" >
1477- <label >Template</label >
1478- <select v-model =" selectedTemplate" class =" form-control" >
1479- <option value =" " >Select a template...</option >
1480- <option v-for =" tpl in templates" :key =" tpl.id" :value =" tpl.id" >
1481- {{ tpl.name }}
1482- </option >
1483- </select >
1484- </div >
1485-
14861467 <div class =" form-group" >
14871468 <label >Preset</label >
14881469 <select v-model =" selectedPreset" class =" form-control" >
0 commit comments