Commit a60eab43 authored by Francis Renaud's avatar Francis Renaud
Browse files

Adjusted width of components in Dashboard configuration pane. Tentative...

Adjusted width of components in Dashboard configuration pane. Tentative narrowing of Event Creation Pane
parent 106ca8fa
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -113,7 +113,7 @@ const ConfigurationView = (props) => {
          value={props.view1}
        />
      </GridCell>
      <GridCell span={2}>
      <GridCell span={3}>
        <IDSelect
          label={'Select Source Node'}
          outlined
@@ -124,7 +124,7 @@ const ConfigurationView = (props) => {
          value={props.sourceNodeSelected ? props.sourceNodeSelected.data.id : ''}
        />
      </GridCell>
      <GridCell span={1}>
      <GridCell span={4}>
        <Checkbox
          checked={props.displayEdgeLabels}
          onChange={() => props.changeDisplayEdgeLabels(!props.displayEdgeLabels)}
@@ -132,7 +132,7 @@ const ConfigurationView = (props) => {
                    Show data on edges
        </Checkbox>
      </GridCell>
      <GridCell span={5}>
      <GridCell span={1}>
      </GridCell>
    </Grid>
    
+2 −2
Original line number Diff line number Diff line
@@ -231,8 +231,8 @@ class ExecPageContainer extends Component {
      ? this.props.execScenarioName
      : this.props.cfgScenarioName;

    const spanLeft = this.props.eventCreationMode ? 8 : 12;
    const spanRight = this.props.eventCreationMode ? 4 : 0;
    const spanLeft = this.props.eventCreationMode ? 10 : 12;
    const spanRight = this.props.eventCreationMode ? 2 : 0;
    return (
      <div style={{width: '100%'}}>
        {this.renderDialogs()}