File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 12
12
}
13
13
14
14
let hash = window . location . hash . substring ( 1 ) ;
15
- if ( hash ) {
16
- window . location . replace ( anchorMap [ hash ] ) ;
15
+ if ( hash && hash in anchorMap ) {
16
+ window . location . replace ( anchorMap [ hash ] ) ;
17
17
}
18
18
} ) ( ) ;
Original file line number Diff line number Diff line change @@ -15,6 +15,20 @@ Release notes
15
15
# .. warning::
16
16
# Pre-release! Use :command:`pip install --pre zarr` to evaluate this release.
17
17
18
+ .. _release_2.14.1 :
19
+
20
+ 2.14.1
21
+ ------
22
+
23
+ Documentation
24
+ ~~~~~~~~~~~~~
25
+
26
+ * Fix API links.
27
+ By :user: `Josh Moore <joshmoore> ` :issue: `1346 `.
28
+
29
+ * Fix unit tests which prevented the conda-forge release.
30
+ By :user: `Josh Moore <joshmoore> ` :issue: `1348 `.
31
+
18
32
.. _release_2.14.0 :
19
33
20
34
2.14.0
You can’t perform that action at this time.
0 commit comments