Fixed broken array representations in Apidoc
parent
f7e88bd594
commit
45f8b2a965
|
@ -107,7 +107,7 @@ export default {
|
|||
}
|
||||
|
||||
return value?.split('|').map((item) => {
|
||||
return item.replace(/(\[|\]|<|>).*$/gm, '').trim();
|
||||
return item.replace(/(\|\|<|>).*$/gm, '').trim();
|
||||
});
|
||||
},
|
||||
isLinkType(value) {
|
||||
|
|
Loading…
Reference in New Issue