Skip to content
This repository was archived by the owner on Mar 24, 2023. It is now read-only.

Commit d49eb00

Browse files
author
Salah Al Saleh
authored
Merge pull request #1072 from replicatedhq/fix-travis-config-issue
Fix textdata config issue
2 parents 7fb54b9 + 056e291 commit d49eb00

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

web/init/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@replicatedhq/ship-init",
3-
"version": "1.6.8",
3+
"version": "1.6.9",
44
"description": "Shared component that contains the Ship Init app",
55
"author": "Replicated, Inc.",
66
"license": "Apache-2.0",

web/init/src/ShipConfigRenderer.jsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ export class ShipConfigRenderer extends React.Component {
3333
<ConfigRender
3434
fieldsList={groupsList}
3535
fields={_groups}
36-
handleChange={this.props.handleChange}
36+
handleChange={this.props.handleChange || (() => { return; })}
37+
getData={this.props.getData || (() => { return; })}
3738
/>
3839
</div>
3940
)

web/init/src/components/config_render/ConfigRender.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export default class ConfigRender extends React.Component {
7979
this.setState({groups: keyBy(groups, "name")});
8080

8181
// TODO: maybe this should only be on submit
82-
this.triggerChange(groups);
82+
this.triggerChange(this.props.getData(groups));
8383
}
8484

8585
componentDidUpdate(lastProps) {

0 commit comments

Comments
 (0)