From 30daf2f86ec6fca938299dbd1e90f8067d8f643d Mon Sep 17 00:00:00 2001
From: Ramesh Kumar <ramesh.p@matriotsolutions.com>
Date: Mon, 1 Mar 2021 19:02:51 +0530
Subject: [PATCH] TMSS-494: Scheduling Set field info text position adjusted.

---
 .../src/routes/Scheduling/excelview.schedulingset.js  | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/SAS/TMSS/frontend/tmss_webapp/src/routes/Scheduling/excelview.schedulingset.js b/SAS/TMSS/frontend/tmss_webapp/src/routes/Scheduling/excelview.schedulingset.js
index 58763de940a..9aeff323993 100644
--- a/SAS/TMSS/frontend/tmss_webapp/src/routes/Scheduling/excelview.schedulingset.js
+++ b/SAS/TMSS/frontend/tmss_webapp/src/routes/Scheduling/excelview.schedulingset.js
@@ -2369,16 +2369,17 @@ export class SchedulingSetCreate extends Component {
                                             options={this.state.schedulingSets} 
                                             onChange={(e) => {this.setSchedulingSetParams('scheduling_set_id',e.value)}} 
                                             placeholder="Select Scheduling Set" />
+                                    <label className={this.state.errors.scheduling_set_id ?"error":"info"}>
+                                        {this.state.errors.scheduling_set_id ? this.state.errors.scheduling_set_id : "Scheduling Set of the Project"}
+                                    </label>
+                                </div>
+                                <div className="col-lg-1 col-md-1 col-sm-12">
                                     <Button label="" className="p-button-primary" icon="pi pi-plus" 
                                         onClick={this.showAddSchedulingSet}  
                                         tooltip="Add new Scheduling Set"
-                                        style={{bottom: '2em', left: '25em'}}
+                                        style={{marginLeft: '-10px'}}
                                         disabled={this.state.schedulingUnit.project !== null ? false : true }/>
-                                    <label className={this.state.errors.scheduling_set_id ?"error":"info"}>
-                                        {this.state.errors.scheduling_set_id ? this.state.errors.scheduling_set_id : "Scheduling Set of the Project"}
-                                    </label>
                                 </div>
-
                             </div>
                             <div className="p-field p-grid">
                                 <label htmlFor="observStrategy" className="col-lg-2 col-md-2 col-sm-12">Observation Strategy <span style={{color:'red'}}>*</span></label>
-- 
GitLab