Skip to content

Commit

Permalink
Merge pull request #676 from icflorescu/next
Browse files Browse the repository at this point in the history
Release 7.14.5
  • Loading branch information
icflorescu authored Nov 26, 2024
2 parents 6e3ad19 + b7e32ca commit 191c708
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
The following is a list of notable changes to the Mantine DataTable component.
Minor versions that are not listed in the changelog are bug fixes and small improvements.

## 7.14.5 (2024-10-26)

- Remove leftover `console.log` statement

## 7.14.4 (2024-10-26)

- Revert previous commit to fix regression (https://github.com/icflorescu/mantine-datatable/issues/663#issuecomment-2501215033)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mantine-datatable",
"version": "7.14.4",
"version": "7.14.5",
"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",
"keywords": [
"mantine",
Expand Down
2 changes: 0 additions & 2 deletions package/DataTableHeaderCellFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ export function DataTableHeaderCellFilter<T>({
const Icon = isActive ? IconFilterFilled : IconFilter;
const ref = useClickOutside(close);

console.log({ filterPopoverProps });

return (
<Popover withArrow shadow="md" opened={isOpen} onClose={close} trapFocus {...filterPopoverProps}>
<PopoverTarget>
Expand Down

0 comments on commit 191c708

Please sign in to comment.