Skip to content

Commit 9c30817

Browse files
committed
merge: hotfix-9.11.3 into master
2 parents 72c7a31 + 5d3902b commit 9c30817

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## [Unreleased]
44

5+
## [9.11.3] – 2025-09-25
6+
7+
### Fixed
8+
9+
- Scroll KWIC container less vertically in Firefox
10+
511
## [9.11.2] – 2025-09-24
612

713
### Fixed
@@ -545,6 +551,7 @@
545551
- Lots of bug fixes for the sidebar
546552

547553
[unreleased]: https://github.com/spraakbanken/korp-frontend/compare/master...dev
554+
[9.11.3]: https://github.com/spraakbanken/korp-frontend/releases/tag/v9.11.3
548555
[9.11.2]: https://github.com/spraakbanken/korp-frontend/releases/tag/v9.11.2
549556
[9.11.1]: https://github.com/spraakbanken/korp-frontend/releases/tag/v9.11.1
550557
[9.11.0]: https://github.com/spraakbanken/korp-frontend/releases/tag/v9.11.0

app/markup/about.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div class="modal-header">
2-
<h2>Korp version 9.11.2</h2>
2+
<h2>Korp version 9.11.3</h2>
33
<span ng-click="clickX()" class="close-x">×</span>
44
</div>
55

app/scripts/components/kwic/kwic.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ angular.module("korpApp").component("kwic", {
553553
/** Scroll KWIC container to center the match column. */
554554
function centerScrollbar() {
555555
// Type assertion needed because `container` is non-standard.
556-
const options = { inline: "center", container: "nearest" } as ScrollIntoViewOptions
556+
const options = { block: "nearest", inline: "center", container: "nearest" } as ScrollIntoViewOptions
557557
$element.find(".match").get(0)?.scrollIntoView(options)
558558
}
559559

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "korp-frontend",
3-
"version": "9.11.2",
3+
"version": "9.11.3",
44
"dependencies": {
55
"@fontsource/source-sans-pro": "^5.1.0",
66
"@fortawesome/fontawesome-free": "6.2.1",

0 commit comments

Comments
 (0)