diff --git a/src/views/assets/Platform/PlatformCreateUpdate.vue b/src/views/assets/Platform/PlatformCreateUpdate.vue index 271a7d21e..99ce94264 100644 --- a/src/views/assets/Platform/PlatformCreateUpdate.vue +++ b/src/views/assets/Platform/PlatformCreateUpdate.vue @@ -82,6 +82,12 @@ export default { if (obj['category'] && obj['type']) { obj['category_type'] = [obj['category'].value, obj['type'].value] } + obj.protocols = obj.protocols.map(i => { + if (i.name === 'http') { + i.display_name = 'http(s)' + } + return i + }) return obj }, defaultOptions: {}