Skip to content

Commit 4788a05

Browse files
committed
Add className to versions for JavadocLink use
1 parent af32adf commit 4788a05

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

docusaurus.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,27 +69,32 @@ const config = {
6969
label: '<VERSION_NUMBER>',
7070
path: 'latest', // When a new version is released and this is no longer the current version, change this to the version number and then delete this comment.
7171
banner: 'none',
72+
className: 'X.X.X', // This should be the most recent version (major.minor.patch) so that the Javadoc links point to the latest version based on the major.minor version that the visitor is viewing on the docs site.
7273
},
7374
*/
7475
current: { // When a new version is released and this is no longer the current version, change this to the version number and then delete this comment.
7576
label: '3.14',
7677
path: 'latest', // When a new version is released and this is no longer the current version, change this to the version number and then delete this comment.
7778
banner: 'none',
79+
className: '3.14.0',
7880
},
7981
"3.13": {
8082
label: '3.13',
8183
path: '3.13',
8284
banner: 'none',
85+
className: '3.13.1',
8386
},
8487
"3.12": {
8588
label: '3.12',
8689
path: '3.12',
8790
banner: 'none',
91+
className: '3.12.4',
8892
},
8993
"3.11": {
9094
label: '3.11',
9195
path: '3.11',
9296
banner: 'none',
97+
className: '3.11.4',
9398
},
9499
"3.10": {
95100
label: '3.10',

0 commit comments

Comments
 (0)