From 4fe79209b7aec0ff99fd818f48d717669c81b341 Mon Sep 17 00:00:00 2001 From: Christoph Wolfes Date: Tue, 24 Jul 2018 15:39:50 +0200 Subject: [PATCH 1/2] updates flow to the latest version 0.77.0 --- scm-ui/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scm-ui/package.json b/scm-ui/package.json index de30ec8047..7269bac4ec 100644 --- a/scm-ui/package.json +++ b/scm-ui/package.json @@ -40,7 +40,7 @@ "enzyme": "^3.3.0", "enzyme-adapter-react-16": "^1.1.1", "fetch-mock": "^6.5.0", - "flow-bin": "^0.75.0", + "flow-bin": "^0.77.0", "flow-typed": "^2.5.1", "node-sass-chokidar": "^1.3.0", "npm-run-all": "^4.1.3", From 82e5ec8255a4408b09c43f75e1833a3261c077e3 Mon Sep 17 00:00:00 2001 From: Christoph Wolfes Date: Tue, 24 Jul 2018 15:48:44 +0200 Subject: [PATCH 2/2] updates _links property to required --- scm-ui/src/users/types/User.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scm-ui/src/users/types/User.js b/scm-ui/src/users/types/User.js index b782ef2fdb..0d85aa179c 100644 --- a/scm-ui/src/users/types/User.js +++ b/scm-ui/src/users/types/User.js @@ -8,5 +8,5 @@ export type User = { password: string, admin: boolean, active: boolean, - _links?: Links + _links: Links };