@eui/showcase 21.0.0-next.49 → 21.0.0-next.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1203,10 +1203,10 @@ class DocPageComponent {
1203
1203
  }
1204
1204
  });
1205
1205
  // push the "others" at the end of the nav list
1206
- this.categories.push(this.categories.splice(this.categories.findIndex(v => v.name == 'others'), 1)[0]);
1207
1206
  this.categories.sort((a, b) => {
1208
1207
  return this.getCategoryIndex(a.name) - this.getCategoryIndex(b.name);
1209
1208
  });
1209
+ this.categories.push(this.categories.splice(this.categories.findIndex(v => v.name == 'others'), 1)[0]);
1210
1210
  setTimeout(() => {
1211
1211
  this._scrollToFragment(this.fragmentId, tabIndex, true, true);
1212
1212
  this.asService.isBlockDocumentActive = false;