Skip to content

Commit 191c708

Browse files
authored
Merge pull request #676 from icflorescu/next
Release 7.14.5
2 parents 6e3ad19 + b7e32ca commit 191c708

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
The following is a list of notable changes to the Mantine DataTable component.
44
Minor versions that are not listed in the changelog are bug fixes and small improvements.
55

6+
## 7.14.5 (2024-10-26)
7+
8+
- Remove leftover `console.log` statement
9+
610
## 7.14.4 (2024-10-26)
711

812
- Revert previous commit to fix regression (https://github.com/icflorescu/mantine-datatable/issues/663#issuecomment-2501215033)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mantine-datatable",
3-
"version": "7.14.4",
3+
"version": "7.14.5",
44
"description": "The lightweight, dependency-free, dark-theme aware table component for your Mantine UI data-rich applications, featuring asynchronous data loading support, pagination, intuitive Gmail-style additive batch rows selection, column sorting, custom cell data rendering, row expansion, nesting, context menus, and much more",
55
"keywords": [
66
"mantine",

package/DataTableHeaderCellFilter.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ export function DataTableHeaderCellFilter<T>({
1919
const Icon = isActive ? IconFilterFilled : IconFilter;
2020
const ref = useClickOutside(close);
2121

22-
console.log({ filterPopoverProps });
23-
2422
return (
2523
<Popover withArrow shadow="md" opened={isOpen} onClose={close} trapFocus {...filterPopoverProps}>
2624
<PopoverTarget>

0 commit comments

Comments
 (0)