@dev-tcloud/tcloud-ui 0.0.44 → 0.0.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2955,9 +2955,6 @@ class TCloudUiFiltersComponent {
2955
2955
  if (typeof +(item_value) === 'number') {
2956
2956
  let is_accept = false;
2957
2957
  if (filter_item.condition) {
2958
- console.log('filter_item.condition', filter_item.condition);
2959
- console.log('filter_item.searchText', +(filter_item.searchText));
2960
- console.log('item_value', +(item_value));
2961
2958
  switch (filter_item.condition) {
2962
2959
  case TCCondition.gt:
2963
2960
  is_accept = !(+(filter_item.searchText) > +(item_value));