Skip to content

Commit

Permalink
style: removed debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
cnouguier committed Aug 22, 2024
1 parent 70b4115 commit f0ec42c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion core/client/filter.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 => {
Expand Down
1 change: 0 additions & 1 deletion core/client/utils/utils.time.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,4 @@ export function fromQuasarTime (time, format) {
return (Time.getFormatTimezone()
? moment.tz(time, format, Time.getFormatTimezone())
: moment(time, format))
console.log()
}

0 comments on commit f0ec42c

Please sign in to comment.