From 3899531e33c5fdb424716e5489be952934397c08 Mon Sep 17 00:00:00 2001 From: Nikola Petrov Date: Sat, 3 Feb 2024 12:28:04 +0100 Subject: [PATCH] cashTransaction remove raw in list --- controllers/cashTransactionController.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/controllers/cashTransactionController.js b/controllers/cashTransactionController.js index c890a1f..dbaad55 100644 --- a/controllers/cashTransactionController.js +++ b/controllers/cashTransactionController.js @@ -14,9 +14,9 @@ module.exports = { var month = splitDate[1]; year = parseInt(year); month = parseInt(month); - transactions = await cashTransactionModel.find({ year, month }, { _id: 0, __v: 0 }); + transactions = await cashTransactionModel.find({ year, month }, { _id: 0, __v: 0, raw: 0 }); } else { - transactions = await cashTransactionModel.find({}, { _id: 0, __v: 0 }); + transactions = await cashTransactionModel.find({}, { _id: 0, __v: 0, raw: 0 }); } const data = { transactions: transactions, types: types };