Skip to content

Commit 4553b3a

Browse files
committed
stripped comments
1 parent 1fb2370 commit 4553b3a

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/user/Admin/Tickets/Filter/Filter.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,6 @@ import CheckOutlinedIcon from "@material-ui/icons/CheckOutlined";
1616
import SearchOutlinedIcon from "@material-ui/icons/SearchOutlined";
1717
import LocationOnOutlinedIcon from "@material-ui/icons/LocationOnOutlined";
1818

19-
// Author, tags and status are the three filters that we want
20-
// only one author can be selected at a time, clicking on a different authoir will unclick the first author
21-
// implement search bar in author filter
22-
// implement
23-
2419
class Filter extends Component {
2520
constructor(props) {
2621
super(props);
@@ -101,7 +96,6 @@ class Filter extends Component {
10196
};
10297

10398
handleTagsChange = (tag) => {
104-
// in not present then add if already present then clicking on it will remove it
10599
if (this.state.tags.indexOf(tag) === -1) {
106100
this.setState(
107101
{
@@ -120,7 +114,6 @@ class Filter extends Component {
120114
};
121115

122116
handleStatusChange = (status) => {
123-
// in not present then add if already present then clicking on it will remove it
124117
if (this.state.status.indexOf(status) === -1) {
125118
this.setState(
126119
{

0 commit comments

Comments
 (0)