1
0
mirror of synced 2025-12-30 03:01:36 -05:00

use unique var names

This commit is contained in:
Hector Alfaro
2022-05-04 13:19:56 -04:00
parent 0f8b5cc642
commit ee8cbb67bd

View File

@@ -82,9 +82,9 @@ for (const file of articleFiles) {
previewCell += `${version}@ `
prodCell += `${version}@ `
currentApplicableVersions.forEach((version) => {
previewCell += `[${version.split('@')[1]}](${APP_URL}/${version}/${fileUrl}) `
prodCell += `[${version.split('@')[1]}](${PROD_URL}/${version}/${fileUrl}) `
currentApplicableVersions.forEach((ghesVersion) => {
previewCell += `[${ghesVersion.split('@')[1]}](${APP_URL}/${ghesVersion}/${fileUrl}) `
prodCell += `[${ghesVersion.split('@')[1]}](${PROD_URL}/${ghesVersion}/${fileUrl}) `
})
previewCell += '<br>'
prodCell += '<br>'