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