Skip to content
This repository was archived by the owner on Aug 29, 2023. It is now read-only.

Commit 6c9e795

Browse files
committed
Fix
1 parent e48ff9a commit 6c9e795

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM node:stretch-slim as build-deps
22

33
LABEL maintainer="helge.dzierzon@brockmann-consult.de"
44
LABEL name="Cate App"
5-
LABEL version="2.3.0-dev.0"
5+
LABEL version="2.3.0-dev.1"
66

77
RUN apt-get -y update && apt-get install -y git apt-utils wget vim
88

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2.3.0-dev.0-{build}
1+
version: 2.3.0-dev.1-{build}
22
image: Ubuntu
33
stack: node 12
44
install:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cate-app",
3-
"version": "2.3.0-dev.0",
3+
"version": "2.3.0-dev.1",
44
"private": true,
55
"dependencies": {
66
"@blueprintjs/core": "^3.30.1",

src/renderer/containers/AppRouter.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ const AppRouter: React.FC<IAppRouterProps> = ({hubStatus}) => {
3030
</Route>
3131
<Route path="/hub">
3232
{
33-
(hubStatus === null || hubStatus.status !== 'ok')
33+
// It should read
34+
// (hubStatus === null || hubStatus.status !== 'ok')
35+
// but this will always bring us back to "/" after login :(
36+
(hubStatus !== null && hubStatus.status !== 'ok')
3437
? (<Redirect to="/"/>)
3538
: (<AppMainPageForHub/>)
3639
}

src/serviceWorker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// "./service-worker.js" file changes). Therefore we use a version number here,
1515
// so we can force updates.
1616
//
17-
const CATE_PWA_VERSION = "2.3.0-dev.0";
17+
const CATE_PWA_VERSION = "2.3.0-dev.1";
1818

1919
console.debug(`Cate PWA version ${CATE_PWA_VERSION}`);
2020

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
// 1. with the version field in "../package.json".
33
// 2. with CATE_PWA_VERSION in "./serviceWorker.ts"
44
//
5-
export const CATE_APP_VERSION = "2.3.0-dev.0";
5+
export const CATE_APP_VERSION = "2.3.0-dev.1";

0 commit comments

Comments
 (0)