diff --git a/src/main/SubtitleSelect.tsx b/src/main/SubtitleSelect.tsx index c871ea58d..e6ffc7791 100644 --- a/src/main/SubtitleSelect.tsx +++ b/src/main/SubtitleSelect.tsx @@ -94,7 +94,7 @@ const SubtitleSelect: React.FC = () => { // Converts tags from the config file format to opencast format const convertTags = (tags: subtitleTags) => { return Object.entries(tags) - .map(tag => `${tag[0]}: ${tag[1]}`) + .map(tag => `${tag[0]}:${tag[1]}`) .concat(); };