We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54d63d5 commit 0427b43Copy full SHA for 0427b43
docs/Examples/EditableTable.example.purs
@@ -48,7 +48,7 @@ docs = unit # make component
48
editableTable
49
{ addLabel: "Add another row"
50
, columns:
51
- [ { label: "Descriptionxxx"
+ [ { label: "Description"
52
, renderCell: \row -> Input.input Input.text_
53
{ value = row.description
54
, onChange = handler targetValue \value ->
@@ -63,9 +63,6 @@ docs = unit # make component
63
updateRow self row { quantity = fromMaybe row.quantity $ fromString =<< value }
64
}
65
66
- , { label: "foobar"
67
- , renderCell: \row -> R.text "hello"
68
- }
69
, { label: "Price"
70
, renderCell: \row -> Input.input Input.number
71
{ value = show row.price
0 commit comments