From 4faab006e3a1d5beee48e4e8e66a2c59beb77d39 Mon Sep 17 00:00:00 2001 From: triphora Date: Fri, 24 Mar 2023 15:07:54 -0400 Subject: [PATCH] Fix #725 (#1060) --- plugins/shorthands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) => {