Skip to content
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
- Fixed `disabled` text color form fields in Safari ([#4538](https://github.com/elastic/eui/pull/4538))
- Removed static `id` from `EuiQuickSelectPopover` ([#4543](https://github.com/elastic/eui/pull/4543))
- Fixed support sever side rendering for `EuiDataGrid` ([#4540](https://github.com/elastic/eui/pull/4540))
- Fixed Inverse handling of boolean sorting `EuiDataGrid` ([#4561](https://github.com/elastic/eui/pull/4561))
Comment thread
anuragxxd marked this conversation as resolved.
Outdated

**Theme: Amsterdam**

Expand Down
1 change: 0 additions & 1 deletion docs/bundle.min.js.map

This file was deleted.

4 changes: 2 additions & 2 deletions src/components/datagrid/data_grid_schema.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@ export const schemaDetectors: EuiDataGridSchemaDetector[] = [
sortTextAsc: (
<EuiI18n
token="euiDataGridSchema.booleanSortTextAsc"
default="True-False"
default="False-True"
/>
),
sortTextDesc: (
<EuiI18n
token="euiDataGridSchema.booleanSortTextDesc"
default="False-True"
default="True-False"
/>
),
},
Expand Down