Skip to content

Commit

Permalink
fix(deployment): fix default value for rt updater
Browse files Browse the repository at this point in the history
fixes #146
  • Loading branch information
landonreed committed May 13, 2018
1 parent 93ac6bb commit 153291a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/manager/components/DeploymentSettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default class DeploymentSettings extends Component {
const stateUpdate = {}
objectPath.set(stateUpdate,
`routerConfig.updaters.$${this.state.routerConfig.updaters ? 'push' : 'set'}`,
[{type: '', url: '', frequencySec: '', sourceType: '', defaultAgencyId: ''}]
[{type: '', url: '', frequencySec: 30, sourceType: '', defaultAgencyId: ''}]
)
this.setState(update(this.state, stateUpdate))
}
Expand Down

0 comments on commit 153291a

Please sign in to comment.