From fe4678748fa136e2c7d79e5fe0ebd22db9f10c27 Mon Sep 17 00:00:00 2001 From: Lennart Kuell Date: Thu, 11 Aug 2022 16:17:18 +0200 Subject: [PATCH 1/3] Fix height on topics dashboard Fix GitHub link on home page Fix warnings in route /home file --- src/components/visualizations/LdaTopicVis.tsx | 4 ++-- src/routes/home.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/visualizations/LdaTopicVis.tsx b/src/components/visualizations/LdaTopicVis.tsx index 7739116..504b187 100644 --- a/src/components/visualizations/LdaTopicVis.tsx +++ b/src/components/visualizations/LdaTopicVis.tsx @@ -91,7 +91,7 @@ export default function LdaTopicVis(props: { route: string }) { } return ( -
+
C5: Topic modelling
@@ -101,7 +101,7 @@ export default function LdaTopicVis(props: { route: string }) { position: 'relative', alignItems: 'center', justifyContent: 'center', - height: '80%', + minHeight: '80%', }} > diff --git a/src/routes/home.tsx b/src/routes/home.tsx index 0057875..7738452 100644 --- a/src/routes/home.tsx +++ b/src/routes/home.tsx @@ -23,7 +23,7 @@ export default function Home() {
- + {'logo'} Welcome to the CS-Insights Demo @@ -54,7 +54,7 @@ export default function Home() { Visit us on Date: Fri, 12 Aug 2022 10:33:26 +0200 Subject: [PATCH 2/3] Remove old envs --- .env.old | 2 -- .env.production | 1 - 2 files changed, 3 deletions(-) delete mode 100644 .env.old delete mode 100644 .env.production diff --git a/.env.old b/.env.old deleted file mode 100644 index 86c714e..0000000 --- a/.env.old +++ /dev/null @@ -1,2 +0,0 @@ -REACT_APP_VERSION=$npm_package_version -REACT_APP_NAME=$npm_package_name \ No newline at end of file diff --git a/.env.production b/.env.production deleted file mode 100644 index ababa1e..0000000 --- a/.env.production +++ /dev/null @@ -1 +0,0 @@ -REACT_APP_BACKEND = "http://134.76.17.232/api/v0/" \ No newline at end of file From 31a20f5b8d0de522c4453f0322c2244b3d47e2be Mon Sep 17 00:00:00 2001 From: Jan Philip Wahle Date: Fri, 12 Aug 2022 15:58:14 +0200 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=8C=BF=20Readd=20production=20env?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.production | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .env.production diff --git a/.env.production b/.env.production new file mode 100644 index 0000000..471c598 --- /dev/null +++ b/.env.production @@ -0,0 +1,2 @@ +PORT = 3001 +REACT_APP_BACKEND = "http://cs-insights.uni-goettingen.de/api/v0/" \ No newline at end of file