Skip to content

Commit 47d49a0

Browse files
committed
React-basic 11
1 parent 237a0a5 commit 47d49a0

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

bower.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
"purescript-prelude": "^4.0.1",
3030
"purescript-profunctor-lenses": ">=4.0.0 <7.0.0",
3131
"purescript-random": "^4.0.0",
32-
"purescript-react-basic": ">= 8.0.0 < 10.0.0",
33-
"purescript-react-basic-hooks": "^0.6.1",
34-
"purescript-react-dnd-basic": "^6.0.0",
32+
"purescript-react-basic": "^11.0.0",
33+
"purescript-react-basic-hooks": "^1.0.1",
34+
"purescript-react-dnd-basic": "^6.1.3",
3535
"purescript-record": ">= 1.0.0 < 3.0.0",
3636
"purescript-simple-json": ">=4.0.0 <7.0.0",
3737
"purescript-strings": "^4.0.0",

src/Lumi/Components/EditableTable.purs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import Data.Array as Array
77
import Data.Array.NonEmpty (NonEmptyArray)
88
import Data.Array.NonEmpty as NonEmptyArray
99
import Data.Either (Either(..))
10-
import Data.Int (toNumber)
1110
import Data.Maybe (Maybe(..))
1211
import Effect (Effect)
1312
import JSS (JSS, jss)
@@ -151,7 +150,7 @@ editableTable = makeStateless component render
151150
}
152151
}
153152
]
154-
, colSpan: toNumber columnCount
153+
, colSpan: columnCount
155154
}
156155
]
157156
]

src/Lumi/Components/Layouts/OneColumnWithHeader.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ sidebarLayout = makeStateless sidebarLayoutComponent render where
9090
[ R.div
9191
{ style: R.css { "flex": "0 0 30%" }
9292
, className: "column bl view-scroll"
93-
, maxLength: "400px"
93+
, maxLength: 400
9494
, children: [
9595
R.div { className: "ppa", children: [ content ]}
9696
]

0 commit comments

Comments
 (0)