Skip to content

Commit 153291a

Browse files
committed
fix(deployment): fix default value for rt updater
fixes #146
1 parent 93ac6bb commit 153291a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/manager/components/DeploymentSettings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export default class DeploymentSettings extends Component {
7979
const stateUpdate = {}
8080
objectPath.set(stateUpdate,
8181
`routerConfig.updaters.$${this.state.routerConfig.updaters ? 'push' : 'set'}`,
82-
[{type: '', url: '', frequencySec: '', sourceType: '', defaultAgencyId: ''}]
82+
[{type: '', url: '', frequencySec: 30, sourceType: '', defaultAgencyId: ''}]
8383
)
8484
this.setState(update(this.state, stateUpdate))
8585
}

0 commit comments

Comments
 (0)