Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/pluggableWidgets/datagrid-web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

- We added accessibility support for column headers when single selection is enabled, making sure the purpose of the column is announced.

### Fixed

- We fixed an issue with Data export crashing on some Android devices.

## [3.8.1] - 2026-02-19

### Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ declare global {
}

function createScheduler(): { yield(): Promise<void> } {
if ("scheduler" in window) {
if (window.scheduler?.yield) {
return {
async yield() {
return window.scheduler.yield();
Expand Down
Loading