Skip to content
This repository has been archived by the owner on Nov 20, 2023. It is now read-only.

Commit

Permalink
Merge pull request #23 from huddeldaddel/Bugfix
Browse files Browse the repository at this point in the history
Fixed copy & paste error on config page
  • Loading branch information
huddeldaddel authored Feb 27, 2023
2 parents af68324 + 24043da commit 90772e0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/config/Config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,8 @@ class ConfigPage extends React.Component<any, IState> {
<div className="control">
<div className="select">
<select
value={this.state.gitLabMaxProjectCount}
onChange={this.handleGitLabMaxProjectCountChange}
value={this.state.gitLabRefreshInterval}
onChange={this.handleGitLabRefreshIntervalChange}
>
<option value="5">Every 5 minutes</option>
<option value="10">Every 10 minutes</option>
Expand All @@ -228,8 +228,8 @@ class ConfigPage extends React.Component<any, IState> {
<div className="control">
<div className="select">
<select
value={this.state.gitLabRefreshInterval}
onChange={this.handleGitLabRefreshIntervalChange}
value={this.state.gitLabMaxProjectCount}
onChange={this.handleGitLabMaxProjectCountChange}
>
<option value="0">No. Show all projects.</option>
<option value="20">Yes. Show 20 projects.</option>
Expand Down

0 comments on commit 90772e0

Please sign in to comment.