Skip to content

Commit 0427b43

Browse files
committed
cleanup
1 parent 54d63d5 commit 0427b43

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

docs/Examples/EditableTable.example.purs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ docs = unit # make component
4848
editableTable
4949
{ addLabel: "Add another row"
5050
, columns:
51-
[ { label: "Descriptionxxx"
51+
[ { label: "Description"
5252
, renderCell: \row -> Input.input Input.text_
5353
{ value = row.description
5454
, onChange = handler targetValue \value ->
@@ -63,9 +63,6 @@ docs = unit # make component
6363
updateRow self row { quantity = fromMaybe row.quantity $ fromString =<< value }
6464
}
6565
}
66-
, { label: "foobar"
67-
, renderCell: \row -> R.text "hello"
68-
}
6966
, { label: "Price"
7067
, renderCell: \row -> Input.input Input.number
7168
{ value = show row.price

0 commit comments

Comments
 (0)