Fixed broken array representations in Apidoc

pull/4733/head
tugcekucukoglu 2023-11-01 10:23:48 +03:00
parent f7e88bd594
commit 45f8b2a965
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ export default {
}
return value?.split('|').map((item) => {
return item.replace(/(\[|\]|<|>).*$/gm, '').trim();
return item.replace(/(\|\|<|>).*$/gm, '').trim();
});
},
isLinkType(value) {