From e92aedfc5ce2819602608d4b0f0418517845b00d Mon Sep 17 00:00:00 2001 From: Lukas Brabec Date: Jan 14 2019 15:41:01 +0000 Subject: subdir, polishing --- diff --git a/src/App.js b/src/App.js index 6d6f527..4651e99 100644 --- a/src/App.js +++ b/src/App.js @@ -12,7 +12,7 @@ import './App.css'; class App extends Component { render() { return ( - +
diff --git a/src/Blockers.js b/src/Blockers.js index 106ddba..0e7fc56 100644 --- a/src/Blockers.js +++ b/src/Blockers.js @@ -34,7 +34,9 @@ class Blockers extends Component {
- + + + @@ -56,7 +58,9 @@ class Blockers extends Component {
Beta
Beta
- + + + diff --git a/src/Events.js b/src/Events.js index dd7cd48..a3e1c85 100644 --- a/src/Events.js +++ b/src/Events.js @@ -18,8 +18,7 @@ class Events extends Component { } render() { const meetings = this.state.meetings.map(meeting => { - //return (
  • {meeting.start} - {meeting.summary}
  • ) - return () + return () }); return (
    diff --git a/src/LandingPage.js b/src/LandingPage.js index 6e146e8..a920d6e 100644 --- a/src/LandingPage.js +++ b/src/LandingPage.js @@ -1,5 +1,6 @@ import React, { Component } from 'react'; import { Container, Row, Button } from 'reactstrap'; +import { Link } from 'react-router-dom' import Layout from './Layout'; import Timeline from "./Timeline"; import Events from "./Events"; @@ -37,9 +38,9 @@ class LandingPage extends Component {
    - +
    diff --git a/src/Masthead.js b/src/Masthead.js index 6c51523..7823c1f 100644 --- a/src/Masthead.js +++ b/src/Masthead.js @@ -1,5 +1,5 @@ import React, { Component } from 'react'; - +import { Link } from 'react-router-dom' import { Container, NavbarBrand, Nav, NavItem, Navbar, Button } from 'reactstrap'; import logo from './logo.png'; @@ -10,10 +10,10 @@ class Masthead extends Component { return ( - + diff --git a/src/Timeline.js b/src/Timeline.js index 8ed9e56..1420f49 100644 --- a/src/Timeline.js +++ b/src/Timeline.js @@ -33,18 +33,26 @@ class Timeline extends Component { render() { const line = this.state.schedule.map(milestone => { return ( -
    + ) }) const dates = this.state.schedule.map(milestone => { - return () + return ( + + ) }); const schedule = this.state.schedule.map(milestone => { - return () + return ( + + ) }); return (
    diff --git a/src/WizardForm.js b/src/WizardForm.js index 4b124ff..71c58e9 100644 --- a/src/WizardForm.js +++ b/src/WizardForm.js @@ -47,7 +47,7 @@ class WizardForm extends Component { this.setState({ duration: data.duration }); - if (this.state.duration.length == 1){ + if (this.state.duration.length === 1){ let x = {target: {value: this.state.duration[0]}}; this.duration_selected(x); } @@ -69,7 +69,7 @@ class WizardForm extends Component { secondary_enabled: false, actions: [], }); - if (this.state.primary_tags.length == 1){ + if (this.state.primary_tags.length === 1){ let x = {target: {value: this.state.primary_tags[0]}}; this.primary_tag_selected(x); }
    Final
    Final
    + + {milestone.date} + {milestone.date} + - {milestone.summary}{' '} - + {milestone.summary}{' '} +