From ff7c6f9e239a852eda014354834b28b83106a34a Mon Sep 17 00:00:00 2001 From: Lukas Brabec Date: Feb 01 2019 11:22:11 +0000 Subject: uncomment minutes --- diff --git a/package-lock.json b/package-lock.json index f234656..d04a7cc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5629,11 +5629,13 @@ }, "balanced-match": { "version": "1.0.0", - "bundled": true + "bundled": true, + "optional": true }, "brace-expansion": { "version": "1.1.11", "bundled": true, + "optional": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -5646,15 +5648,18 @@ }, "code-point-at": { "version": "1.1.0", - "bundled": true + "bundled": true, + "optional": true }, "concat-map": { "version": "0.0.1", - "bundled": true + "bundled": true, + "optional": true }, "console-control-strings": { "version": "1.1.0", - "bundled": true + "bundled": true, + "optional": true }, "core-util-is": { "version": "1.0.2", @@ -5757,7 +5762,8 @@ }, "inherits": { "version": "2.0.3", - "bundled": true + "bundled": true, + "optional": true }, "ini": { "version": "1.3.5", @@ -5767,6 +5773,7 @@ "is-fullwidth-code-point": { "version": "1.0.0", "bundled": true, + "optional": true, "requires": { "number-is-nan": "^1.0.0" } @@ -5779,17 +5786,20 @@ "minimatch": { "version": "3.0.4", "bundled": true, + "optional": true, "requires": { "brace-expansion": "^1.1.7" } }, "minimist": { "version": "0.0.8", - "bundled": true + "bundled": true, + "optional": true }, "minipass": { "version": "2.2.4", "bundled": true, + "optional": true, "requires": { "safe-buffer": "^5.1.1", "yallist": "^3.0.0" @@ -5806,6 +5816,7 @@ "mkdirp": { "version": "0.5.1", "bundled": true, + "optional": true, "requires": { "minimist": "0.0.8" } @@ -5878,7 +5889,8 @@ }, "number-is-nan": { "version": "1.0.1", - "bundled": true + "bundled": true, + "optional": true }, "object-assign": { "version": "4.1.1", @@ -5888,6 +5900,7 @@ "once": { "version": "1.4.0", "bundled": true, + "optional": true, "requires": { "wrappy": "1" } @@ -5993,6 +6006,7 @@ "string-width": { "version": "1.0.2", "bundled": true, + "optional": true, "requires": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", diff --git a/src/landingpage/LandingPage.js b/src/landingpage/LandingPage.js index f850bd4..6fd2982 100644 --- a/src/landingpage/LandingPage.js +++ b/src/landingpage/LandingPage.js @@ -5,6 +5,7 @@ import Layout from '../layout/Layout'; import Timeline from "./Timeline"; import Events from "./Events"; import Blockers from "./Blockers"; +import Minutes from "./Minutes"; import {oraculumApiUrl_v1} from "../config"; @@ -51,13 +52,11 @@ class LandingPage extends Component { -{/*
-*/}
diff --git a/src/landingpage/Minutes.js b/src/landingpage/Minutes.js index afb4606..e43c3c2 100644 --- a/src/landingpage/Minutes.js +++ b/src/landingpage/Minutes.js @@ -1,19 +1,22 @@ import React, { Component } from 'react'; class Events extends Component { - constructor(props) { - super(props); - this.state = { link: "", date: "" }; - } - render() { return (

- Latest QA Meeting Minutes From {this.props.data.date} + Fedora QA Meeting Minutes

- Here! + + Latest minutes from {this.props.data.date} + +
+ Visit{' '} + + meetbot + {' '} + to see older.
); }