diff --git a/SAS/TMSS/frontend/tmss_webapp/src/routes/Reservation/reservation.list.js b/SAS/TMSS/frontend/tmss_webapp/src/routes/Reservation/reservation.list.js
index 3afdda44df102670f18a6a71af807311e36318b1..f6a519d8fdf5bb66f48b7cd050fd9331700a31f1 100644
--- a/SAS/TMSS/frontend/tmss_webapp/src/routes/Reservation/reservation.list.js
+++ b/SAS/TMSS/frontend/tmss_webapp/src/routes/Reservation/reservation.list.js
@@ -138,7 +138,7 @@ export class ReservationList extends Component{
         this.cycleList= [];
         this.selectedRows = [];
         this.totalPage = 0;
-        this.pageUpdated = false;
+        this.pageUpdated = true;
         this.onRowSelection = this.onRowSelection.bind(this);
         this.confirmDeleteReservations = this.confirmDeleteReservations.bind(this);
         this.deleteReservations = this.deleteReservations.bind(this);
@@ -191,10 +191,13 @@ export class ReservationList extends Component{
                 this.setState({fEndTime: '', cycle: ''});
             }
         }
-        let filter = _.find(filters, function(filter){
-            return (filter.id === 'Start Time' && filter.value.length>0) && (filter.id === 'End Time' && filter.value.length>0)
+        let filterStartTime = _.find(filters, function(filter){
+            return (filter.id === 'Start Time' && filter.value.length>0);
+        });
+        let filterEndTime = _.find(filters, function(filter){
+            return (filter.id === 'End Time' && filter.value.length>0)
         });
-        if (!filter) {
+        if (!filterStartTime && !filterEndTime) {
             this.setState({cycle: ''});
         }
     }
@@ -704,7 +707,7 @@ export class ReservationList extends Component{
                                          filter={true}
                                          showClear={true}
                                          showFilterClear={true}
-                                         tooltip="Select Cycle to search appropriate reservation, based on Cycle's Start & Stop time it will find reservation"
+                                         tooltip="Select cycle to view reservations that start and end in the cycle (will not include those are reserved for unknown duration)"
                                     />
                                     <label htmlFor="cycle" >Filter by Cycle</label>
                                 </span>