diff --git a/plugins/shorthands.js b/plugins/shorthands.js index 2c55046c6..274156a91 100644 --- a/plugins/shorthands.js +++ b/plugins/shorthands.js @@ -326,7 +326,7 @@ export const formatVersions = (versionArray, tag) => { } } - return output.join(', ') + return (output.length === 0 ? versionArray : output).join(', ') } export const cycleValue = (value, values) => {