@messaia/cdk 19.0.1-rc02 → 19.0.1

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.
@@ -2152,7 +2152,7 @@ function Column(args) {
2152
2152
  case 'number':
2153
2153
  tableColumn.inputType ||= 'number';
2154
2154
  tableColumn.type ||= TableColumnType.Number;
2155
- tableColumn.filterOperator ||= FilterOperator.Contains;
2155
+ tableColumn.filterOperator = tableColumn.filterOperator != undefined ? tableColumn.filterOperator : FilterOperator.Contains;
2156
2156
  break;
2157
2157
  case 'date':
2158
2158
  tableColumn.inputType ||= 'date';