Replace Table with responsive Card. Add refresh of token and retry on 401 errors

This commit is contained in:
2019-01-18 14:03:58 +01:00
parent d4f432f422
commit 86486795f6
11 changed files with 230 additions and 248 deletions
+2 -2
View File
@@ -23,9 +23,9 @@ if (config.dev) {
// Add graphql mocking middleware
//addGraphMiddleware(app);
app.use('/graph', proxy('localhost:8081', {
app.use('/graph/', proxy('localhost:8081', {
proxyReqPathResolver: function (req) {
return '/graph';
return '/graph/';
}
}
)