From f0ec42cafa76abbf838faee48525381a7e1f207d Mon Sep 17 00:00:00 2001 From: cnouguier Date: Thu, 22 Aug 2024 09:33:40 +0200 Subject: [PATCH] style: removed debug statements --- core/client/filter.js | 1 - core/client/utils/utils.time.js | 1 - 2 files changed, 2 deletions(-) diff --git a/core/client/filter.js b/core/client/filter.js index adcec4967..3d79a6f55 100644 --- a/core/client/filter.js +++ b/core/client/filter.js @@ -41,7 +41,6 @@ export const Filter = { // Handle the pattern if (pattern !== '') { query.$or = _.map(fields, field => { return { [field]: { $search: pattern } } }) - console.log(query) } // Handle the selection items.forEach(item => { diff --git a/core/client/utils/utils.time.js b/core/client/utils/utils.time.js index f756df6a3..8b2807197 100644 --- a/core/client/utils/utils.time.js +++ b/core/client/utils/utils.time.js @@ -33,5 +33,4 @@ export function fromQuasarTime (time, format) { return (Time.getFormatTimezone() ? moment.tz(time, format, Time.getFormatTimezone()) : moment(time, format)) - console.log() } \ No newline at end of file