File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 11Package: reactR
22Type: Package
33Title: React Helpers
4- Version: 0.4.0
5- Date: 2019-04-10
4+ Version: 0.4.1
5+ Date: 2019-05-14
66Authors@R: c(
77 person(
88 "Facebook", "Inc"
Original file line number Diff line number Diff line change 22
33* Add support for ` shiny::registerInputHandler ` in Shiny inputs; [ pull 28] ( https://github.com/react-R/reactR/pull/28 )
44
5+ * Add support for Shiny rate limit [ pull 29] ( https://github.com/react-R/reactR/pull/29 )
6+
57# reactR 0.4.0
68
79* Add Shiny input scaffold and functionality; [ tutorial] ( https://react-r.github.io/reactR/articles/intro_inputs.html ) and [ pull 22] ( https://github.com/react-R/reactR/pull/22 ) thanks @alandipert
Original file line number Diff line number Diff line change @@ -137,7 +137,9 @@ class App extends React.Component {
137137 <antd.Steps current={current} size="small">
138138 {steps.map(item => <antd.Steps.Step key={item.title} title={item.title} />)}
139139 </antd.Steps>
140- <div className="steps-content">{steps[this.state.current].content}</div>
140+ <div className="steps-content" style={{minHeight: "600px", display: "flex", alignItems: "center"}}>
141+ {steps[this.state.current].content}
142+ </div>
141143 <div className="steps-action">
142144 {
143145 this.state.current < steps.length - 1
You can’t perform that action at this time.
0 commit comments