File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed
src/user/Admin/Tickets/Filter Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -16,11 +16,6 @@ import CheckOutlinedIcon from "@material-ui/icons/CheckOutlined";
1616import SearchOutlinedIcon from "@material-ui/icons/SearchOutlined" ;
1717import 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-
2419class 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 {
You can’t perform that action at this time.
0 commit comments