Skip to content

Commit 61cb302

Browse files
Remove duplicate cells export from HTMLTableRowElement (#66)
1 parent df90b59 commit 61cb302

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ New features:
2020
- Added `onLine` value for `Navigator` (#61 by @toastal)
2121
- Added `setDragImage` function for `DataTransfer` (#65 by @ajarista)
2222

23+
Bugfixes:
24+
- Removed duplicated `cells` export from the FFI in HTMLTableRowElement.js (#58 by @thomashoneyman)
25+
2326
## [v3.1.0](https://github.com/purescript-web/purescript-web-html/releases/tag/v3.1.0) - 2021-05-06
2427

2528
New features:

src/Web/HTML/HTMLTableRowElement.js

-8
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,6 @@ exports.cells = function (row) {
2424

2525
// ----------------------------------------------------------------------------
2626

27-
exports.cells = function (row) {
28-
return function () {
29-
return row.cells;
30-
};
31-
};
32-
33-
// ----------------------------------------------------------------------------
34-
3527
exports.insertCellAt = function (index) {
3628
return function (row) {
3729
return function () {

0 commit comments

Comments
 (0)