We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecf8740 commit d22077aCopy full SHA for d22077a
sites/equinox/build/index.html
@@ -68,7 +68,9 @@ <h3 id="other">Other Information</h3>
68
<script>
69
loadPageData('buildproperties.json', data => {
70
data.buildTypeName = getBuildTypeName(data)
71
- data.releaseShortUnderscore = data.releaseShort.replace('.', '_')
+ if (data.releaseShort) {
72
+ data.releaseShortUnderscore = data.releaseShort.replace('.', '_')
73
+ }
74
return data
75
})
76
0 commit comments