This commit is contained in:
triphora 2023-03-24 15:07:54 -04:00 committed by GitHub
parent 80621f598e
commit 4faab006e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -326,7 +326,7 @@ export const formatVersions = (versionArray, tag) => {
}
}
return output.join(', ')
return (output.length === 0 ? versionArray : output).join(', ')
}
export const cycleValue = (value, values) => {