From 4ae1c8a80ec309ca3019248773e339221fd5d4ea Mon Sep 17 00:00:00 2001 From: Emanuele Ferrelli Date: Wed, 7 May 2025 17:28:28 +0200 Subject: [PATCH] Update video doctype --- src/views/pages/KsVideos/KsVideos.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/pages/KsVideos/KsVideos.vue b/src/views/pages/KsVideos/KsVideos.vue index 275ba66..b4cd829 100644 --- a/src/views/pages/KsVideos/KsVideos.vue +++ b/src/views/pages/KsVideos/KsVideos.vue @@ -400,10 +400,10 @@ const getFileIcon = (filename) => { const mapDocType = (type) => { const mapping = { - 'functional': 'Functional', - 'code_instruction': 'Code Instruction', - 'specification': 'Specification', - 'other': 'Other' + 'functional_video': 'Functional video', + 'code_instruction_video': 'Code Instruction video', + 'specification_video': 'Specification video', + 'other_video': 'Other' }; return mapping[type] || type; };