Skip to content
Snippets Groups Projects
Commit 2d38e121 authored by Ramesh Kumar's avatar Ramesh Kumar
Browse files

TMSS-680: Missing column added and style updated.

parent 58f4ba7c
Branches
Tags
1 merge request!467TMSS-680: SU List in Timeline view moved to Tab panel common to both views....
...@@ -202,7 +202,7 @@ ...@@ -202,7 +202,7 @@
position: fixed !important; position: fixed !important;
// top: 50%; // top: 50%;
// transition: all 0.2s ease-in 0s;//this is the key attribute // transition: all 0.2s ease-in 0s;//this is the key attribute
z-index: 9999; z-index: 1000;
//cursor: pointer; //cursor: pointer;
font-size: 8px; font-size: 8px;
color: #ffffff; color: #ffffff;
......
...@@ -85,7 +85,6 @@ class TimelineCommonUtils { ...@@ -85,7 +85,6 @@ class TimelineCommonUtils {
* @returns Object - A JSON object with station groups and count as proerpty with formatted string to display * @returns Object - A JSON object with station groups and count as proerpty with formatted string to display
*/ */
getSUStationGroupCount(itemSU) { getSUStationGroupCount(itemSU) {
console.log("IN TIMELINE COMMON UTILS");
const itemStations = this.getSUStations(itemSU); const itemStations = this.getSUStations(itemSU);
const itemStationGroups = this.groupSUStations(itemStations); const itemStationGroups = this.groupSUStations(itemStations);
let suStationGroupCount = { groups: "", counts: "" }; let suStationGroupCount = { groups: "", counts: "" };
......
...@@ -185,7 +185,7 @@ class TimelineListTabs extends Component { ...@@ -185,7 +185,7 @@ class TimelineListTabs extends Component {
</TabView> </TabView>
{this.state.showStatusLogs && {this.state.showStatusLogs &&
<Dialog header={`Status change logs - ${this.state.task ? this.state.task.name : ""}`} <Dialog header={`Status change logs - ${this.state.task ? this.state.task.name : ""}`}
visible={this.state.showStatusLogs} maximizable maximized={false} position="left" style={{ width: '50vw' }} visible={this.state.showStatusLogs} maximizable={false} maximized={false} position="left" style={{ width: '50vw' }}
onHide={() => { this.setState({ showStatusLogs: false }) }}> onHide={() => { this.setState({ showStatusLogs: false }) }}>
<TaskStatusLogs taskId={this.state.task.id}></TaskStatusLogs> <TaskStatusLogs taskId={this.state.task.id}></TaskStatusLogs>
</Dialog> </Dialog>
......
...@@ -211,6 +211,9 @@ const TimelineConstants = { ...@@ -211,6 +211,9 @@ const TimelineConstants = {
fixedProject: { fixedProject: {
name: "Fixed Project" name: "Fixed Project"
}, },
project_id: {
name: "Project"
},
effectsExpert: { effectsExpert: {
name: "Expert" name: "Expert"
}, },
...@@ -237,7 +240,7 @@ const TimelineConstants = { ...@@ -237,7 +240,7 @@ const TimelineConstants = {
"Stations": "filter-input-100", "Manual": "filter-input-50", "Stations": "filter-input-100", "Manual": "filter-input-50",
"Dynamic": "filter-input-50", "Fixed Project": "filter-input-50", "Dynamic": "filter-input-50", "Fixed Project": "filter-input-50",
"Expert": "filter-input-50", "HBA-RFI": "filter-input-50", "Expert": "filter-input-50", "HBA-RFI": "filter-input-50",
"LBA-RFI":"filter-input-50" "LBA-RFI":"filter-input-50", "Project": "filter-input-100"
}] }]
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment