Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
cead22 committed Dec 24, 2024
1 parent 83773fb commit 788bce7
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions src/js/module/dashboard/ListIssuesAssigned.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,19 +88,37 @@ class ListIssuesAssigned extends React.Component {
Hide:
<div className="checkbox">
<label>
<input type="checkbox" name="shouldHideIfHeld" id="shouldHideIfHeld" onChange={this.toggleHeldFilter} checked={this.state.shouldHideHeldIssues ? 'checked' : undefined} />
<input
type="checkbox"
name="shouldHideIfHeld"
id="shouldHideIfHeld"
onChange={this.toggleHeldFilter}
checked={this.state.shouldHideHeldIssues ? 'checked' : undefined}
/>
On Hold
</label>
</div>
<div className="checkbox">
<label>
<input type="checkbox" name="shouldHideIfUnderReview" id="shouldHideIfUnderReview" onChange={this.toggleUnderReviewFilter} checked={this.state.shouldHideUnderReviewIssues ? 'checked' : undefined} />
<input
type="checkbox"
name="shouldHideIfUnderReview"
id="shouldHideIfUnderReview"
onChange={this.toggleUnderReviewFilter}
checked={this.state.shouldHideUnderReviewIssues ? 'checked' : undefined}
/>
Under Review
</label>
</div>
<div className="checkbox">
<label>
<input type="checkbox" name="shouldHideIfOwnedBySomeoneElse" id="shouldHideIfOwnedBySomeoneElse" onChange={this.toggleOwnedBySomeoneElseFilter} checked={this.state.shouldHideOwnedBySomeoneElseIssues ? 'checked' : undefined} />
<input
type="checkbox"
name="shouldHideIfOwnedBySomeoneElse"
id="shouldHideIfOwnedBySomeoneElse"
onChange={this.toggleOwnedBySomeoneElseFilter}
checked={this.state.shouldHideOwnedBySomeoneElseIssues ? 'checked' : undefined}
/>
Owned by Someone Else
</label>
</div>
Expand Down

0 comments on commit 788bce7

Please sign in to comment.