diff --git a/client/src/modules/transcripts/components/List.vue b/client/src/modules/transcripts/components/List.vue
index 1dfcb4a25..ac37dc590 100644
--- a/client/src/modules/transcripts/components/List.vue
+++ b/client/src/modules/transcripts/components/List.vue
@@ -35,8 +35,12 @@
-
{{ __('No transcript yet', 'podlove-podcasting-plugin-for-wordpress') }}
-
{{ __('Get started by importing a transcript.', 'podlove-podcasting-plugin-for-wordpress') }}
+
+ {{ __('No transcript yet', 'podlove-podcasting-plugin-for-wordpress') }}
+
+
+ {{ __('Get started by importing a transcript.', 'podlove-podcasting-plugin-for-wordpress') }}
+
@@ -149,6 +153,13 @@ export default defineComponent({
...transcript,
voice: get(this.voices, [transcript.voiceId], { name: transcript.voiceId }),
}))
+ .filter((transcript: Transcript) => {
+ const assignment = this.state.voices.find(
+ (voice: { voice: string; contributor: string }) => voice.voice == transcript.voiceId
+ )
+
+ return assignment.contributor != 4294967295
+ })
},
},
diff --git a/client/src/modules/transcripts/components/Voices.vue b/client/src/modules/transcripts/components/Voices.vue
index ef0e370fe..2e7f56459 100644
--- a/client/src/modules/transcripts/components/Voices.vue
+++ b/client/src/modules/transcripts/components/Voices.vue
@@ -23,7 +23,12 @@
class="mt-1 block w-full py-2 px-3 border border-gray-300 bg-white rounded-md shadow-sm focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm"
@change="updateContributor(voice.voice, $event)"
>
-
+
+