🐛do not display empty menu for "shared_with_me" (#346)
This commit is contained in:
@@ -4,7 +4,7 @@ module.exports = function (app) {
|
||||
app.use(
|
||||
'/internal',
|
||||
createProxyMiddleware({
|
||||
target: 'http://localhost:4000',
|
||||
target: 'http://127.0.0.1:4000',
|
||||
onError: (err, req, resp) => {
|
||||
console.log(err);
|
||||
},
|
||||
@@ -13,7 +13,7 @@ module.exports = function (app) {
|
||||
app.use(
|
||||
'/__',
|
||||
createProxyMiddleware({
|
||||
target: 'http://localhost:4000',
|
||||
target: 'http://127.0.0.1:4000',
|
||||
}),
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user