From 5c4d029cd96a93168ec6a472f76a1bc6a139cad4 Mon Sep 17 00:00:00 2001
From: Ramesh Kumar <ramesh.p@matriotsolutions.com>
Date: Thu, 25 Mar 2021 13:58:20 +0530
Subject: [PATCH] TMSS-641: Reservation View link from timeline summary is
 disabled temporarily and need to be enabled once the page is developed.

---
 .../tmss_webapp/src/routes/Timeline/reservation.summary.js    | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/SAS/TMSS/frontend/tmss_webapp/src/routes/Timeline/reservation.summary.js b/SAS/TMSS/frontend/tmss_webapp/src/routes/Timeline/reservation.summary.js
index 57d9b79fbd8..50a80c71b0a 100644
--- a/SAS/TMSS/frontend/tmss_webapp/src/routes/Timeline/reservation.summary.js
+++ b/SAS/TMSS/frontend/tmss_webapp/src/routes/Timeline/reservation.summary.js
@@ -104,7 +104,9 @@ export class ReservationSummary extends Component {
             { reservation &&
                 <div className="p-grid timeline-details-pane" style={{marginTop: '10px'}}>
                     <h6 className="col-lg-10 col-sm-10">Reservation Details</h6>
-                    <Link to={`/su/timeline/reservation/view/${reservation.id}`} title="View Full Details"><i className="fa fa-eye"></i></Link>
+                    {/* TODO: Enable the link once Reservation view page is created */}
+                    {/* <Link to={`/su/timeline/reservation/view/${reservation.id}`} title="View Full Details" ><i className="fa fa-eye"></i></Link> */}
+                    <i className="fa fa-eye" style={{color: 'grey'}}></i>
                     <Link to={this.props.location?this.props.location.pathname:"/su/timelineview"} onClick={this.closeSUDets} title="Close Details"><i className="fa fa-times"></i></Link>
                     <div className="col-4"><label>Name:</label></div>
                     <div className="col-8">{reservation.name}</div>
-- 
GitLab