bazel-contrib / bcr-ui

Website for the Bazel Central Registry
https://registry.bazel.build
Apache License 2.0
17 stars 8 forks source link

Fix broken sorting on module page based on navigation #25

Closed hobofan closed 2 years ago

hobofan commented 2 years ago

CLOSES #24

As .reverse() does an in-place reverse, rather than one that returns a reversed clone of the array, we mutated the props, which is a big no-no. With cloning it before via a slice() we circumvent that and get a consistent result between client-side rendering and SSR.

hobofan commented 2 years ago

Handled by #26