From b02c82d559325cfca09b05274902f872b8267cba Mon Sep 17 00:00:00 2001 From: Thomas Honeyman Date: Wed, 6 Oct 2021 21:06:19 +0200 Subject: [PATCH 1/2] Remove duplicate cells export from HTMLTableRowElement --- src/Web/HTML/HTMLTableRowElement.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/Web/HTML/HTMLTableRowElement.js b/src/Web/HTML/HTMLTableRowElement.js index 775169d..75d8ecb 100644 --- a/src/Web/HTML/HTMLTableRowElement.js +++ b/src/Web/HTML/HTMLTableRowElement.js @@ -24,14 +24,6 @@ exports.cells = function (row) { // ---------------------------------------------------------------------------- -exports.cells = function (row) { - return function () { - return row.cells; - }; -}; - -// ---------------------------------------------------------------------------- - exports.insertCellAt = function (index) { return function (row) { return function () { From c5be14353af8928371ecb34e0c7873908584c13c Mon Sep 17 00:00:00 2001 From: Thomas Honeyman Date: Wed, 6 Oct 2021 21:08:26 +0200 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cbdd1e..ae37021 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,9 @@ New features: - Added `onLine` value for `Navigator` (#61 by @toastal) - Added `setDragImage` function for `DataTransfer` (#65 by @ajarista) +Bugfixes: +- Removed duplicated `cells` export from the FFI in HTMLTableRowElement.js (#58 by @thomashoneyman) + ## [v3.1.0](https://github.com/purescript-web/purescript-web-html/releases/tag/v3.1.0) - 2021-05-06 New features: