File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ function toFolderName(name) {
2727}
2828
2929for ( const mod of modules ) {
30- const id = mod . uniqueID || ''
30+ const id = mod . versionID || ''
3131 if ( ! id ) continue
3232
3333 const folder = toFolderName ( mod . name || id )
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ for (const moduleInfo of modulesList) {
4040 description = '' ,
4141 features = [ ] ,
4242 download = '' ,
43- uniqueID = '' ,
43+ versionID = '' ,
4444 } = moduleInfo
4545
4646 const versionStr = toVersionString ( version )
@@ -61,13 +61,13 @@ for (const moduleInfo of modulesList) {
6161 output += `</ul>\n\n`
6262 }
6363
64- if ( uniqueID ) {
64+ if ( versionID ) {
6565 const base = 'https://liliaframework.github.io/Modules/docs'
6666
6767 output += `<p><strong>Libraries:</strong></p>\n`
68- output += `<p><a href="${ base } /libraries/modules/${ uniqueID } .html">Access Here</a></p>\n\n`
68+ output += `<p><a href="${ base } /libraries/modules/${ versionID } .html">Access Here</a></p>\n\n`
6969 output += `<p><strong>Hooks:</strong></p>\n`
70- output += `<p><a href="${ base } /hooks/modules/${ uniqueID } .html">Access Here</a></p>\n\n`
70+ output += `<p><a href="${ base } /hooks/modules/${ versionID } .html">Access Here</a></p>\n\n`
7171 }
7272
7373 if ( download ) {
You can’t perform that action at this time.
0 commit comments