File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88 <div class =" selector-selectedItem-name" >
99 <span class =" selector-selectedItem-name-wrapper" >
1010 {{ selectedItem ? selectedItem.text : 'Kuzzle' }}
11- <font-awesome-icon icon =" fa-solid fa-caret-down" size =" xs" aria-hidden =" true" />
1211 </span >
1312 </div >
1413 </div >
Original file line number Diff line number Diff line change 2828
2929 <!-- Header title -->
3030 <div data-md-component =" title" >
31- <span >
32- <MajorVersionSelector :kuzzle-major =" kuzzleMajor " />
33- </span >
31+ <MajorVersionSelector :kuzzle-major =" kuzzleMajor " />
3432 </div >
3533
3634 <div class =" md-header-nav__top-menu-container" >
4644 </div >
4745
4846 <div class =" divider" ></div >
49- <button class =" btnCta" ><a href =" https://kuzzle.io" target =" _blank" >Discover Kuzzle</a ></button >
47+ <button class =" btnCta" >
48+ <a href =" https://kuzzle.io" target =" _blank" >Discover Kuzzle</a >
49+ </button >
5050
5151 <!-- Repository containing source -->
5252 <!-- <div class="md-flex__cell md-flex__cell-- shrink">
Original file line number Diff line number Diff line change 1919 >
2020 </li >
2121 <li class =" topMenu__item" >
22- <MenuDropdown
22+ <a
23+ :href =" `/core/${kuzzleMajor}/api/`"
24+ :class =" {
25+ 'topMenu__link--active': isLinkActive(
26+ `/core/${kuzzleMajor}/api/`
27+ ),
28+ }"
29+ title =" API"
2330 class =" topMenu__link"
24- title="References"
25- :items =" referencesItems "
26- />
31+ >API</a
32+ >
33+ </li >
34+ <li class =" topMenu__item" >
35+ <a
36+ :href =" `/core/${kuzzleMajor}/framework/`"
37+ :class =" {
38+ 'topMenu__link--active': isLinkActive(
39+ `/core/${kuzzleMajor}/framework/`
40+ ),
41+ }"
42+ title =" Framework"
43+ class =" topMenu__link"
44+ >Framework</a
45+ >
2746 </li >
2847 <li class =" topMenu__item" >
2948 <a
@@ -109,14 +128,6 @@ export default {
109128 kuzzleMajor () {
110129 return getCurrentVersion (this .page$ );
111130 },
112- referencesItems () {
113- const pathStart = ` /core/${ this .kuzzleMajor } ` ;
114-
115- return [
116- { name: ' API' , url: ` ${ pathStart} /api/` },
117- { name: ' Framework' , url: ` ${ pathStart} /framework/` },
118- ];
119- },
120131 },
121132 setup () {
122133 return { page$: usePageData () };
You can’t perform that action at this time.
0 commit comments