diff --git a/server/server.js b/server/server.js index 2365d5c..372ccf7 100644 --- a/server/server.js +++ b/server/server.js @@ -491,9 +491,9 @@ app.get('/users', async (req, res) => { try { const ids = _.castArray(req.query.id); let users = await User.find({ _id: { $in: ids } }); - if (users.length !== ids.length) { // if some ids were not found - return res.status(BAD_REQUEST).send(); - } + // if (users.length !== ids.length) { // if some ids were not found + // return res.status(BAD_REQUEST).send(); + // } users = convertArrayToJsonMap(users, '_id'); return res.send({ users }); diff --git a/views/src/App.vue b/views/src/App.vue index 9b01f1d..94d0202 100644 --- a/views/src/App.vue +++ b/views/src/App.vue @@ -4,7 +4,7 @@ - + diff --git a/views/src/components/sub-components/AppComments.vue b/views/src/components/sub-components/AppComments.vue index 4f8c679..ed56d56 100644 --- a/views/src/components/sub-components/AppComments.vue +++ b/views/src/components/sub-components/AppComments.vue @@ -1,127 +1,154 @@